This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
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 18:25:21 +01:00
default from: ENV.fetch('SMTP_FROM_ADDRESS') { 'notifications@localhost' }
layout 'mailer'
end