Class: SimplyAuth::PasswordMailer

Inherits:
ApplicationMailer show all
Defined in:
app/mailers/simply_auth/password_mailer.rb

Instance Method Summary collapse

Instance Method Details

#reset_password(reset_password_token) ⇒ Object



3
4
5
6
# File 'app/mailers/simply_auth/password_mailer.rb', line 3

def reset_password(reset_password_token)
  @reset_password_token = reset_password_token
  mail(to: reset_password_token.user.email, subject: 'Reset your Password')
end