How do I convert an HTML email saved as a text file to a PDF file from the Linux command line?

5,917

.eml files are just text files, so you can print them using standard methods.

The easiest utility for text conversion is arguably Pandoc. This utility should cover any html email as well, although you'll want to specify the format manually since .eml isn't very standard when it comes to text data.

pandoc -f html -o outputfile.pdf inputfile.eml

Share:
5,917
Stacey Richards
Author by

Stacey Richards

Updated on September 18, 2022

Comments

  • Stacey Richards
    Stacey Richards almost 2 years

    I need to be able to convert HTML email messages saved as text files (.eml or .msg) to PDF documents, one PDF per email, retaining formatting and images.

    Are there any Linux tools that will allow me to do this from the command line (so it can be scripted)?

  • TryTryAgain
    TryTryAgain over 8 years
    Pandoc didn't work for me, I encountered pandoc: Error producing PDF from TeX source even after installing 1GB of dependencies. I instead used MHonArc which was easy to use too and available in most all package installers. apt-get install mhonarc' and then you can convert an entire mailbox/folder or even a single file like mhonarc -single somemailfile > converted.html`