Hello, I have a problem with some emojis not being displayed correctly.
Please load the file: emoji-test-plainOrig.msg
The result is in: finalResult.msg
This is the code:
using Aspose.Email;
using System;namespace AsposeTest
{
class Program
{
static void Main(string[] args)
{
var filePath = “path to emoji-test-plainOrig.msg”;
MailMessage message = MailMessage.Load(filePath);//When loading the file the emojis are not displayed correctly. Check message.Body var emlSaveOptions = new MsgSaveOptions(Aspose.Email.MailMessageSaveType.OutlookMessageFormatUnicode); message.Save("finalResult.msg", emlSaveOptions); } }
}
files.zip (16.0 KB)