Reliable email encoding.
Posted
by Seba Illingworth
on Stack Overflow
See other posts from Stack Overflow
or by Seba Illingworth
Published on 2009-08-28T01:45:44Z
Indexed on
2010/03/28
11:03 UTC
Read the original article
Hit count: 212
What are the most reliable encodings for sending email? I had some problems recently with .NET's System.Net.Mail default of quoted-printable ('=0D=0A' scattered throughout the message).
So I changed to iso-8859-1 for the body (set via alternative views), and 7bit for transfer (and base64 for embedded resources).
Are there the better choices?
© Stack Overflow or respective owner