blob: e5dbfeeda91ee8270f3b88424a06a44389966f43 (
plain) (
blame)
1
2
3
4
5
6
7
|
# frozen_string_literal: true
class ApplicationMailer < ActionMailer::Base
default from: ENV.fetch('SMTP_FROM_ADDRESS') { 'notifications@localhost' }
layout 'mailer'
helper :instance
end
|