search for: nbrutyn

Displaying 1 result from an estimated 1 matches for "nbrutyn".

Did you mean: brutyn
2005 Dec 20
1
Sending mail error
...`start'' i have followed these instructions: http://wiki.rubyonrails.com/rails/pages/HowToSendEmailsWithActionMailer model notifier.rb class Notifier < ActionMailer::Base def signup_confirmation(user) # Email header info MUST be added here @recipients = user.email @from = "nbrutyn-dFbg1g76Gw9l57MIdRCFDg@public.gmane.org" @subject = "Action Required to Activate Account for Twodecode!" # Email body substitutions go here @body["first_name"] = user.first_name @body["last_name"] = user.last_name end end the controller def confirmation...