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.
|
- class UserMailer < ActionMailer::Base
- default from: "from@example.com"
-
- # Subject can be set in your I18n file at config/locales/en.yml
- # with the following lookup:
- #
- # en.user_mailer.reset_password_email.subject
- #
- def reset_password_email(user)
- @user = user
- @url = edit_password_reset_url(user.reset_password_token)
- mail(:to => user.email, :subject => "Your password has been reset")
- end
- end
|