Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 351 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 351 Bytes

nodemailer-file-transport

Build Status A file transport for nodemailer

const transport = fileTransport({
  dir: './emails',
  ext: 'html',
  useSubject: true
});

const transporter = nodemailer.createTransport(transport);