1.0.0 • Published 7 years ago
mailer-pure v1.0.0
mailer-pure
purpose
study send mail.
install
npm i -D mailer-pureconfig test
npm testcover test
npm run coverusage
const fs = require('fs')
const path = require('path')
const Mailer = require('mailer-pure')
const mailer = new Mailer(<email>, <pass>)
const send = async () => {
  const data = await mailer.send({
    to: <to email>,
    subject: <subject>,
    html: fs.createReadStream(path.resolve(__dirname, <path/to/file>)),
    attachments: [{
      filename: <filename>,
      content: fs.createReadStream(path.resolve(__dirname, <path/to/file>))
    }]
  })
  console.info(data)
}
send()License
knowledge
- nodemailer --> - https://nodemailer.com/about/
- license - MIT --> - https://opensource.org/licenses/MIT
- badge - shields --> - https://shields.io/
- cover - istanbul --> - https://www.npmjs.com/package/istanbul
1.0.0
7 years ago