Guest User

Untitled

a guest
Oct 2nd, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class DeliveryMailer
  2.  
  3. def user_creation_email(user_created,password)
  4.  
  5.  
  6. subject "User Registration Mail"
  7.  
  8. recipients user_create.email
  9.  
  10. from 'myapp@test.com'
  11.  
  12. body :user => user,:password => password
  13.  
  14. end
  15.  
  16. end
Add Comment
Please, Sign In to add comment