2015-12-14 16:09:20 +01:00
|
|
|
class ApplicationMailer < ActionMailer::Base
|
2019-06-21 09:50:33 +02:00
|
|
|
helper :application # gives access to all helpers defined within `application_helper`.
|
2018-05-31 15:45:25 +02:00
|
|
|
default from: "demarches-simplifiees.fr <#{CONTACT_EMAIL}>"
|
2015-12-14 16:09:20 +01:00
|
|
|
layout 'mailer'
|
|
|
|
end
|