How to encode mail subject in perl?
How to encode mail subject in perl ? Now I finally found something but it's still not working : use MIME::Words qw/encode_mimewords/; $recipientsubject = encode_mimewords('Votre fichier a bien été envoyé'); But the (bugged) result is : Subject: Votre fichier a bien =?ISO-8859-1?Q?=E9t=E9?= =?ISO-8859-1?Q?envoy=E9?= Which displays : Votre fichier a bien étéenvoyé (It eats some spaces) matthias krull Use Encode , it is a core module. perl -Mutf8 -MEncode -E 'say encode("MIME-Header", "Votre fichier a bien été envoyé")' … will output either one of: =?UTF-8?Q?Votre=20fichier=20a=20bien=20?= =?UTF