While Loading the msg file its showing numbers in body

hello,

We are loading the msg file using aspose.email.dll v17.6, which contains body in Korean language but its showing numbers instead of characters. Please have look on sample given below.
7656bccb-97bc-4bbc-a25b-5118fccee222.zip (13.5 KB)

Thank You.

@Shital_diwate,

I have tried the scenario using Aspose.Email for .NET 18.2.0 but could not observe the issue and body contains proper text. Following sample code is used for testing. Could you please give it a try using latest version and share the feedback?

MailMessage mail = MailMessage.Load(@“7656bccb-97bc-4bbc-a25b-5118fccee222.msg”);
StreamWriter writer = new StreamWriter(@“7656bccb-97bc-4bbc-a25b-5118fccee222.txt”);
writer.WriteLine(mail.Body);
writer.Flush();
writer.Close();
writer.Dispose();

7656bccb-97bc-4bbc-a25b-5118fccee222 (2).zip (493 Bytes)
Body.PNG.zip (38.3 KB)