demarches-normaliennes/app/mailers/devise_user_mailer.rb

16 lines
473 B
Ruby
Raw Normal View History

# Preview all emails at http://localhost:3000/rails/mailers/devise_user_mailer
2018-05-14 14:21:03 +02:00
class DeviseUserMailer < Devise::Mailer
helper :application # gives access to all helpers defined within `application_helper`.
include Devise::Controllers::UrlHelpers # Optional. eg. `confirmation_url`
layout 'mailers/layout'
def template_paths
['devise_mailer']
end
def confirmation_instructions(record, token, opts = {})
opts[:from] = NO_REPLY_EMAIL
super
end
2018-05-14 14:21:03 +02:00
end