Guest User

Untitled

a guest
May 4th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class SendNotice < ActionMailer::Base
  2.  
  3. def welcome(user, generated_password)
  4. recipients user.email
  5. from "The BIRN Management"
  6. subject "Welcome to the BIRN!"
  7. body :user => user, :password => generated_password
  8. sent_on Time.now
  9. end
  10.  
  11. end
Add Comment
Please, Sign In to add comment