Guest User

Untitled

a guest
Jul 22nd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. class Inquiry
  2.  
  3. def deliver_notification
  4. recipient = site.account.email
  5. InquiryMailer.notification(self, recipient).deliver
  6. end
  7.  
  8.  
  9. class InquiryMailer
  10.  
  11. def notification(inquiry, recipient)
  12. @inquiry = inquiry
  13. mail :to => recipient,
  14. :reply_to => @inquiry.email,
  15. :subject => "Nova mensagem"
  16. end
Add Comment
Please, Sign In to add comment