mastodon/app/mailers/application_mailer.rb

7 lines
175 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ApplicationMailer < ActionMailer::Base
2016-11-16 17:25:21 +00:00
default from: ENV.fetch('SMTP_FROM_ADDRESS') { 'notifications@localhost' }
layout 'mailer'
end