Guest User

Untitled

a guest
Jun 19th, 2018
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class UserNotifier < ActionMailer::ARMailer
  2. def signup_notification(user)
  3. @recipients = "#{user.email}"
  4. @from = "sumgai@example.com"
  5. @sent_on = Time.now
  6. @body[:user] = user
  7. @subject = 'Welcome to example.com'
  8. end
  9. end
Add Comment
Please, Sign In to add comment