in reply to Re^6: Encoding for MIME::Lite?
in thread Encoding for MIME::Lite?
That said, why don't you try dropping the encoding completely - MIME::Lite is very good at handling this stuff automatically.
So try this:
$msg = MIME::Lite->new( To => $email_to, From => $email_of_sender, Subject => $email_subject, Type => 'multipart/alternative', ); $msg->attach( Type => 'TEXT', Data => $email_body ); $msg->attach( Type => 'text/html', Data => $email_html ); $msg->send;
Clint
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: Encoding for MIME::Lite?
by Opally (Initiate) on Aug 23, 2007 at 20:45 UTC |