Ondrej
Ondrej

Reputation: 1660

English mail displays Chinese characters in some email clients

I have an application sending english and/or czech emails, which display correctly in some emai clients (Outlook 2010) but display as a bunch of chinese characters in other. I am setting the message.BodyEncoding = System.Text.Encoding.Unicode, however it seems I should do something more... but it seems I don't know what :) any help would be really appreciated.

Upvotes: 0

Views: 2561

Answers (1)

user1477388
user1477388

Reputation: 21430

As per http://msdn.microsoft.com/en-us/library/ms404377(v=vs.110).aspx, try using UTF8 encoding like so:

message.BodyEncoding = System.Text.Encoding.UTF8;

Upvotes: 2

Related Questions