blob: e5dbfeeda91ee8270f3b88424a06a44389966f43 (
plain) (
tree)
|
|
# frozen_string_literal: true
class ApplicationMailer < ActionMailer::Base
default from: ENV.fetch('SMTP_FROM_ADDRESS') { 'notifications@localhost' }
layout 'mailer'
helper :instance
end
|