Hello,
I'm evaluating aspose.Email and have a problem saving the Body content of an email.
The mail Body contains german "Umlaute" (e.g. Ä,Ö etc.).
When saving the Body to an HTML file to disk like that:
HtmlSaveOptions options = SaveOptions.getDefaultHtml();
options.setEmbedResources(true);
message.save("C:\\DEV\\body.html", options);
the HTML file does not contain the escaped version of the special characters.
An "Ä" should have been replaced by "Ä" which is not the case.
When opening the saved file with my browser an "ü" is printed as "ü" (codepage mismatch).
Is there a way to escape these special charactes?
Thanks!
Regards
Tim