Class: Shoppe::UserMailer
- Inherits:
-
ActionMailer::Base
- Object
- ActionMailer::Base
- Shoppe::UserMailer
- Defined in:
- app/mailers/shoppe/user_mailer.rb
Instance Method Summary collapse
Instance Method Details
#new_password(user) ⇒ Object
5 6 7 8 |
# File 'app/mailers/shoppe/user_mailer.rb', line 5 def new_password(user) @user = user mail :to => user.email_address, :subject => "Your new Shoppe password" end |