Liste des Groupes | Revenir à cl python |
I have a command-line program which creates an email containing German[...]
umlauts. On receiving the mail, my mail client displays the subject and
body correctly:
So far, so good. However, when I use the --verbose option to printThat looks to me like quoted-printable. This is an encoding for binary transport of text to make it robust against not 8-buit clean transports. So your Unicode text is encodings as UTF-8, and then that is encoded in quoted-printable for transport through the email system.
the mail to the terminal via
>
if args.verbose:
print(mail)
>
I get:
>
Subject: Übungsbetreff
>
Sehr geehrter Herr Dr. Bennett,
>
Dies ist eine =C3=9Cbung.
>
What do I need to do to prevent the body from getting mangled?
Les messages affichés proviennent d'usenet.