Guest User

Untitled

a guest
Jul 18th, 2018
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class Notifier < ActionMailer::Base
  2.  
  3. def signup_notification(recipient)
  4. recipients recipient
  5. from "system@example.com"
  6. subject "New account information"
  7. body :account => recipient
  8. end
  9. end
Add Comment
Please, Sign In to add comment