Hi,
I try to convert a .msg-file to html (and later on to tiff), and I have problems converting äüö...
How can I control that?
This is my code:
Aspose.Email.Mail.MailMessage mail;
mail = MailMessage.Load(sInFile);
Aspose.Email.Mail.HtmlSaveOptions options = Aspose.Email.Mail.SaveOptions.DefaultHtml;
options.EmbedResources = false;
options.HtmlFormatOptions = HtmlFormatOptions.WriteCompleteEmailAddress;
mail.Save(sOutFile + ".html", options);
Kind regards,
Oliver
↧