Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active June 29, 2021 06:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/cd40b60f91f72f0c65ab49f479e61884 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/cd40b60f91f72f0c65ab49f479e61884 to your computer and use it in GitHub Desktop.
// Load the EML/EMLX file to be converted
MailMessage message = MailMessage.load("email.eml");
// Save EML as HTML
message.save("Saved File.html", SaveOptions.getDefaultHtml());
// Load the MSG file to be converted
MailMessage message = MailMessage.load("email.msg");
// Save MSG as a HTML
message.save("Saved File.html", SaveOptions.getDefaultHtml());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment