about summary refs log tree commit diff
path: root/app/mailers/application_mailer.rb
blob: 0d9f10a080ec9edd378c9796bdf36da75b6de4e3 (plain) (blame)
1
2
3
4
5
6
# frozen_string_literal: true

class ApplicationMailer < ActionMailer::Base
  default from: ENV.fetch('SMTP_FROM_ADDRESS') { 'notifications@localhost' }
  layout 'mailer'
end