Class: Tienda::UserMailer

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

Instance Method Summary collapse

Instance Method Details

#new_password(user) ⇒ Object



4
5
6
7
# File 'app/mailers/tienda/user_mailer.rb', line 4

def new_password(user)
  @user = user
  mail :from => Tienda.settings.outbound_email_address, :to => user.email_address, :subject => "Your new Tienda password"
end