search for: signup_confirmation

Displaying 3 results from an estimated 3 matches for "signup_confirmation".

2005 Dec 20
1
Sending mail error
...art'' c:/ruby/lib/ruby/1.8/net/smtp.rb:378:in `start'' c:/ruby/lib/ruby/1.8/net/smtp.rb:316:in `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.fi...
2006 Jun 16
0
Strange problem with ActionMailer
I have the following code to send out email notifications. The view can vary for each call to signup_confirmation, so I''m setting template_root on each call in order to do that. It works for a while, but after a few days it will start using a value of signup_path that was used in a previous call. In other words, Notifier.template_root = signup path does not actually set Notifier.template_root to th...
2006 Jun 21
0
Possible bug in actionmailer
I have the following code to send out email notifications. The view can vary for each call to signup_confirmation, so I''m setting template_root on each call in order to do that. It works for a while, but after a few days it will start using a value of signup_path that was used in a previous call. In other words, Notifier.template_root = signup path does not actually set Notifier.template_root to th...