Guest User

Untitled

a guest
Jun 21st, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. class Notifications < ActionMailer::Base
  2.  
  3. def new_referral(referral)
  4. subject 'Notifications#referral'
  5. recipients referral.email
  6. from 'somewhere@someone.com'
  7.  
  8. body :referral => referral
  9. if referral.super?
  10. template "super_referral"
  11. else
  12. template "normal_referral"
  13. end
  14. end
  15.  
  16. end
Add Comment
Please, Sign In to add comment