0.3.0 • Published 2 years ago

@hiraokahypertools/msg_to_eml v0.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

msg_to_eml

Links: typedoc documentation

Installation

yarn add @hiraokahypertools/msg_to_eml

Usage:

  const { MsgConverter } = require('@hiraokahypertools/msg_to_eml');

  const msgFileBuffer = await fs.promises.readFile(msgFilePath);
  const buffer = await (new MsgConverter({ ansiEncoding: options.ansiEncoding }).convertToBuffer(msgFileBuffer));
  process.stdout.write(buffer);