Reputation: 1660
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
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