1.0.2 • Published 4 years ago

msg-to-pdf v1.0.2

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

MSG to PDF

Convert MSG Outlook files to PDF.

Installation

Install via NPM either globally as:

npm i -g msg-to-pdf

or in your project with:

npm i msg-to-pdf

Usage

To use as a global module,

msg-to-pdf <path-to-msg-file>

or

msg-to-pdf <path-to-directory-containing-msg-files>

To use within your project,

const convertToPdf = require("msg-to-pdf");

convertToPdf("path-to-msg-file")
    .then(() => {
        // do something
    });