System.Net.Mail.MailMessage TransferEncoding

G

Gerald S.

MailMessage message = new MailMessage(from, to);
message.Body = "Message body";
message.BodyEncoding = System.Text.Encoding.UTF8;
message.Subject = "Subject";
message.SubjectEncoding = System.Text.Encoding.UTF8;

When the above message is sent, it's encoded by default with "base64",
according to
http://msdn2.microsoft.com/system.net.mail.mailmessage.bodyencoding.aspx.

Now I'd like to have the message encoded with "quoted-printable". Is there
any way to achieve this?

For example, Outlook Express uses quoted-printable with utf-8 by default.
Why can't I set TransferEncoding for the message body in ASP.NET 2.0?

Thanks
--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top