Class: Devise::Mailer
- Inherits:
-
ApplicationMailer
- Object
- ApplicationMailer
- Devise::Mailer
- Includes:
- Devise::Mailers::Helpers
- Defined in:
- app/mailers/integrator/devise/mailer.rb
Instance Method Summary collapse
- #password_change(record, opts = {}) ⇒ Object
- #reset_password_instructions(record, token, opts = {}) ⇒ Object
Instance Method Details
#password_change(record, opts = {}) ⇒ Object
11 12 13 |
# File 'app/mailers/integrator/devise/mailer.rb', line 11 def password_change(record, opts={}) devise_mail(record, :password_change, opts) end |
#reset_password_instructions(record, token, opts = {}) ⇒ Object
6 7 8 9 |
# File 'app/mailers/integrator/devise/mailer.rb', line 6 def reset_password_instructions(record, token, opts={}) @token = token devise_mail(record, :reset_password_instructions, opts) end |