Class: Notifier

Inherits:
ActionMailer::Base
  • Object
show all
Defined in:
app/mailers/notifier.rb

Instance Method Summary collapse

Instance Method Details

#password_reset_instructions(user) ⇒ Object



2
3
4
5
6
7
# File 'app/mailers/notifier.rb', line 2

def password_reset_instructions(user)
  subject "Password Reset Instructions"
  recipients user.email
  sent_on Time.now
  @edit_password_reset_url = edit_password_reset_url(user.perishable_token)
end