Displaying 1 result from an estimated 1 matches for "create_confirmation_message".
2005 Dec 19
0
Re: Rails Digest, Vol 15, Issue 392
....org''
@recipients = person.email_address
attachment(:content_type => ''application/pdf'',
:filename => "mailing-label.pdf",
:body => label.render)
end
I then did something like the following:
email = create_confirmation_message(@order, @person, @payment_method, label)
email.set_content_type("multipart/mixed")
But when I would send the mail, the HTML portion would disappear.
When I used the technique described on the HowToSendMimeMultipartEmailsWithActionMailer page of the Wiki, creating a raw TMail object,...