mhearse has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use MIME::Lite; my $contents = <<EOT; Hello there! EOT my $msg = MIME::Lite->new( From => 'test@mydomain.com', To => 'test@yourdomain.com', Subject => 'Test Message', Type => 'text/html', Data => $contents, ); $msg->attr('content-type.charset' => 'UTF8'); $msg->send();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Send utf8 encoded messages to MS Outlook
by almut (Canon) on May 05, 2008 at 23:49 UTC | |
by mhearse (Chaplain) on May 06, 2008 at 00:29 UTC | |
by ikegami (Patriarch) on May 06, 2008 at 02:01 UTC | |
by mhearse (Chaplain) on May 06, 2008 at 03:11 UTC | |
by Anonymous Monk on May 06, 2008 at 12:17 UTC | |
|
Re: Send utf8 encoded messages to MS Outlook
by pc88mxer (Vicar) on May 05, 2008 at 23:26 UTC | |
by almut (Canon) on May 05, 2008 at 23:35 UTC |