Class: Spree::UserMailer

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

Instance Method Summary collapse

Instance Method Details

#reset_password_instructions(user) ⇒ Object



2
3
4
5
6
7
# File 'app/mailers/spree/user_mailer.rb', line 2

def reset_password_instructions(user)
  @edit_password_reset_url = spree.edit_user_password_url(:reset_password_token => user.reset_password_token)

  mail(:to => user.email,
       :subject => Spree::Config[:site_name] + ' ' + I18n.t(:password_reset_instructions))
end