Class: Dorsale::UserMailer

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

Instance Method Summary collapse

Instance Method Details

#new_account(user, password) ⇒ Object



3
4
5
6
7
8
9
10
# File 'app/mailers/dorsale/user_mailer.rb', line 3

def (user, password)
  @user     = user
  @password = password
  mail(
    :to      => user.email,
    :subject => t("emails.user.new_account.title"),
  )
end