1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00
heartcombo--devise/app/mailers/devise/mailer.rb

25 lines
665 B
Ruby
Raw Normal View History

if defined?(ActionMailer)
class Devise::Mailer < Devise.parent_mailer.constantize
include Devise::Mailers::Helpers
def confirmation_instructions(record, token, opts={})
@token = token
devise_mail(record, :confirmation_instructions, opts)
end
2009-10-07 21:08:24 -04:00
def reset_password_instructions(record, token, opts={})
@token = token
devise_mail(record, :reset_password_instructions, opts)
end
def unlock_instructions(record, token, opts={})
@token = token
devise_mail(record, :unlock_instructions, opts)
end
2015-06-19 15:22:37 -04:00
def password_change(record, opts={})
devise_mail(record, :unlock_instructions)
end
end
2009-10-07 21:08:24 -04:00
end