Class: PasswordMailer

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

Instance Method Summary collapse

Instance Method Details

#password_reset(user) ⇒ Object



5
6
7
8
# File 'app/mailers/password_mailer.rb', line 5

def password_reset(user)
  @user = user
  mail :to => user.email, :subject => "Password Reset for TrustyCMS"
end