GeoRSS aggregator and Layar augmented reality server
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

15 righe
423 B

  1. class UserMailer < ActionMailer::Base
  2. default from: "from@example.com"
  3. # Subject can be set in your I18n file at config/locales/en.yml
  4. # with the following lookup:
  5. #
  6. # en.user_mailer.reset_password_email.subject
  7. #
  8. def reset_password_email(user)
  9. @user = user
  10. @url = edit_password_reset_url(user.reset_password_token)
  11. mail(:to => user.email, :subject => "Your password has been reset")
  12. end
  13. end