Guest User

Untitled

a guest
Jun 21st, 2018
175
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.  
  7. body :referral => referral
  8. if referral.super?
  9. template "super_referral"
  10. else
  11. template "normal_referral"
  12. end
  13. end
  14.  
  15. end
Add Comment
Please, Sign In to add comment