Displaying 1 result from an estimated 1 matches for "deliver_verif".
2005 Apr 12
0
What does EOFError mean in ActionMailer?
I''m trying to implement a user verification phase in my user
registration controller.
So I do something like this from within my controller:
Notifications.deliver_verification(@user)
The method in the mailer object looks like this:
def verification(user,sent_at = Time.now)
@subject = ''Welcome to XXX''
@body = {}
@recipients = user.email
@from = "customerservice@XXX"
@sent_on = sent_at
@headers =...