mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
20 lines
567 B
Ruby
20 lines
567 B
Ruby
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
|
|
|
|
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
|
|
end
|
|
end
|