Class: Iron::PasswordsMailer

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

Instance Method Summary collapse

Instance Method Details

#reset(user) ⇒ Object



3
4
5
6
7
# File 'app/mailers/iron/passwords_mailer.rb', line 3

def reset(user)
  @user = user
  @person = user.person
  mail subject: t(".subject"), to: @person.email_address
end