diff --git a/app/mailers/notify_devise_mailer.rb b/app/mailers/notify_devise_mailer.rb index 45dc58957..2afd340e1 100644 --- a/app/mailers/notify_devise_mailer.rb +++ b/app/mailers/notify_devise_mailer.rb @@ -38,7 +38,15 @@ class NotifyDeviseMailer < Devise::Mailer send_email(record.email, template_id, personalisation) end + def unlock_instructions(record, token, opts = {}) + super + end + def email_changed(record, opts = {}) - # devise_mail(record, :email_changed, opts) + super + end + + def password_change(record, opts = {}) + super end end