mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-01-25 17:12:58 -05:00
7 lines
170 B
Ruby
7 lines
170 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ApplicationMailer < ActionMailer::Base
|
|
default from: (ENV['SMTP_FROM_ADDRESS'] || 'notifications@localhost')
|
|
layout 'mailer'
|
|
end
|