Thread Mime::Lite: Umlaute im Betreff (5 answers)
Opened by MartinR at 2006-09-18 15:30

MartinR
 2006-09-18 15:30
#69993 #69993
User since
2004-06-17
305 Artikel
BenutzerIn
[default_avatar]
Hi,

wahrscheinlich schon tausendmal beantwortet ...

Ich versende (HTML-) Mails mit Mime::Lite. Leider kommen Umlaute im Betreff immer als Fragezeichen an. Also z.B. nicht 'Müller' sondern 'M?ller'. Liegt es an mir oder am verwendeten Mailprogramm (Outlook).

Code: (dl )
1
2
3
4
5
6
7
8
9
10
my $msg = MIME::Lite -> new (
From     => 'xx@xx.de',
To       => 'yy@yy.de',
Subject  => 'Testmail: ä ö ü Ä Ö Ü',
Type     => 'text/html',
Encoding => 'quoted-printable',
Data     => $html
);

$msg -> send;

View full thread Mime::Lite: Umlaute im Betreff