GeoRSS aggregator and Layar augmented reality server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- class UserMailer < ActionMailer::Base
- default from: ENV['APOLLO_EMAIL_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
|