in reply to Send utf8 encoded messages to MS Outlook
Original response:
I bet $content contain code-points and not a UTF8 byte stream. Try this:
My recollection is that MIME::Lite doesn't perform any character encoding of the message even when you specify the content-type.charset attribute.use Encode; my $msg = MIME::Lite->new( ... Data => encode('utf8', $contents), );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Send utf8 encoded messages to MS Outlook
by almut (Canon) on May 05, 2008 at 23:35 UTC |