class Devise::Mailer

Public Instance Methods

confirmation_instructions(record, token, opts={}) click to toggle source
# File app/mailers/devise/mailer.rb, line 5
def confirmation_instructions(record, token, opts={})
  @token = token
  devise_mail(record, :confirmation_instructions, opts)
end
password_change(record, opts={}) click to toggle source
# File app/mailers/devise/mailer.rb, line 20
def password_change(record, opts={})
  devise_mail(record, :password_change, opts)
end
reset_password_instructions(record, token, opts={}) click to toggle source
# File app/mailers/devise/mailer.rb, line 10
def reset_password_instructions(record, token, opts={})
  @token = token
  devise_mail(record, :reset_password_instructions, opts)
end
unlock_instructions(record, token, opts={}) click to toggle source
# File app/mailers/devise/mailer.rb, line 15
def unlock_instructions(record, token, opts={})
  @token = token
  devise_mail(record, :unlock_instructions, opts)
end