in reply to Problem with russian / cyrillic in e-mail program.
my $msg = MIME::Lite->new( From => "=?UTF-8?B?" . encode_base64( 'Some russian + text', "" ) . "?=" . ' <inf@irkutsk.2gis.ru>', To => $email_address, Subject => "=?UTF-8?B?" . encode_base64( 'Some russian + text', "" ) . "?=", Type => 'multipart/mixed', ); $msg->attach( Type => 'text/html; charset=UTF-8', Data => $message_html, ); $msg->attach( Type => 'application/msword', Path => $base_path . '\\' . $dir_name . '\\' . $fi +le_name . ".doc", Filename => "=?UTF-8?B?" . encode_base64( 'Some russia +n text', "" ) . "?=" . '.doc', ); $msg->attr('content-type.charset' => 'UTF-8'); $msg->send;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem with russian / cyrillic in e-mail program.
by dbmathis (Scribe) on Apr 04, 2010 at 03:40 UTC | |
by Gangabass (Vicar) on Apr 04, 2010 at 11:52 UTC |