search for: dfbg1g76gw9l57midrcfdg

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

2005 Dec 20
1
Sending mail error
...#39;' 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_mail user = User.find...