Displaying 2 results from an estimated 2 matches for "signup_confirmation_ctype".
2006 Jun 16
0
Strange problem with ActionMailer
...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 merchant.signup_confirmation_ctype.empty?
@content_type = "text/html"
else
@content_type = merchant.signup_confirmation_ctype
end
# Email body substitutions go here
@body["template_root"] = Notifier.template_root
@body["signup_path"] =signup_path
@body["...
2006 Jun 21
0
Possible bug in actionmailer
...@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 merchant.signup_confirmation_ctype.empty?
@content_type = "text/html"
else
@content_type = merchant.signup_confirmation_ctype
end
# Email body substitutions go here
@body["template_root"] = Notifier.template_root
@body["signup_path"] =signup_path
@body["merchan...