Files
nairobi/app/mailers/application_mailer.rb
2022-08-04 17:16:05 +02:00

8 lines
219 B
Ruby

class ApplicationMailer < ActionMailer::Base
helper :settings
helper :application
helper :mailer
default from: proc { "#{Setting["mailer_from_name"]} <#{Setting["mailer_from_address"]}>" }
layout "mailer"
end