in reply to Re: Encoding for MIME::Lite?
in thread Encoding for MIME::Lite?
Thank you for submitting your school profile to the Core Knowledge Fou +n= dation. You submitted the following data on: Thursday, August 23, +2007 at 1= 2:19:33, server time. = asdf<= tr><= /tr>= <= /tr><= /tr><= /tr> How did you find out about CK? please ignore, testing New = or updated profile? New
thanks for your help!use MIME::Lite; use MIME::QuotedPrint; # # this part generates $email_body for plain text and $email_html for +html text # $msg = MIME::Lite->new( To =>$email_to, From =>$email_of_sender, Subject =>$email_subject, Type =>'multipart/alternative', ); $msg->attach(Type => 'text/plain', Data => $email_body ); $msg->attach(Type => 'text/html', Data => encode_qp($email_html) ); $msg->send;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Encoding for MIME::Lite?
by clinton (Priest) on Aug 23, 2007 at 19:35 UTC | |
by Opally (Initiate) on Aug 23, 2007 at 20:02 UTC | |
by clinton (Priest) on Aug 23, 2007 at 20:04 UTC | |
by Opally (Initiate) on Aug 23, 2007 at 20:09 UTC | |
by clinton (Priest) on Aug 23, 2007 at 20:20 UTC | |
|