Guest User

Untitled

a guest
Jan 23rd, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. # Send password reset notification
  2. # path: app/mailers/user_mailer.rb
  3. class UserMailer < ActionMailer::Base
  4. default :from => "no-reply@example.com"
  5.  
  6. def password_reset(user, password)
  7. @user = user
  8. @password = password
  9. mail(:to => user.email,
  10. :subject => 'Password Reset Notification')
  11. end
  12. end
Add Comment
Please, Sign In to add comment