Displaying 2 results from an estimated 2 matches for "signup_confirmation_from".
2006 Jun 16
0
Strange problem with ActionMailer
...to make any difference.
class Notifier < ActionMailer::Base
def signup_confirmation(merchant,affiliate,password,login_url,signup_path)
Notifier.template_root = signup_path
# Email header info MUST be added here
@recipients = affiliate.email,merchant.email
if merchant.signup_confirmation_from.empty?
@from = merchant.email
else
@from = merchant.signup_confirmation_from
end
if merchant.signup_confirmation_subject.empty?
@subject = "Welcome to #{merchant.name}"
else
@subject = merchant.signup_confirmation_subject
end...
2006 Jun 21
0
Possible bug in actionmailer
...m to make any difference.
class Notifier < ActionMailer::Base
def signup_confirmation(merchant,affiliate,password,login_url,signup_path)
Notifier.template_root = signup_path
# Email header info MUST be added here
@recipients = affiliate.email,merchant.email
if merchant.signup_confirmation_from.empty?
@from = merchant.email
else
@from = merchant.signup_confirmation_from
end
if merchant.signup_confirmation_subject.empty?
@subject = "Welcome to #{merchant.name}"
else
@subject = merchant.signup_confirmation_subject
end
if me...