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

class ApplicationMailer < ActionMailer::Base
  default from: (ENV['SMTP_FROM_ADDRESS'] || 'notifications@localhost')
  layout 'mailer'
end