Skip to content

Instantly share code, notes, and snippets.

@GroupDocsGists
Last active May 28, 2021 05:17
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 GroupDocsGists/43c2651a5028f1b20d354f5ee4c12647 to your computer and use it in GitHub Desktop.
Save GroupDocsGists/43c2651a5028f1b20d354f5ee4c12647 to your computer and use it in GitHub Desktop.
Convert MSG and EML to PDF in C# | Email Messages to PDF
// Convert EML message to PDF in C#
using (Converter converter = new Converter("emailMessage.eml"))
{
PdfConvertOptions options = new PdfConvertOptions();
converter.Convert("eml-Message.pdf", options);
}
// Convert MSG message to PDF in C#
using (Converter converter = new Converter("emailMessage.msg"))
{
PdfConvertOptions options = new PdfConvertOptions();
converter.Convert("msg-Message.pdf", options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment