in reply to Re^7: Encoding for MIME::Lite?
in thread Encoding for MIME::Lite?
$msg = MIME::Lite->new( To =>$form_data{'email'}, From =>$email_of_admin, Subject =>$email_subject, Type =>'multipart/alternative' ); $msg->attach(Type => 'text/plain', Data => $email_body ); $msg->attach(Type => 'text/html', Encoding => 'quoted-printable', Data => $email_html ); $msg->send;
|
|---|