How to use the nodemailer/lib/mail-composer function in nodemailer

To help you get started, we’ve selected a few nodemailer examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github notifme / notifme-sdk / src / providers / email / ses.js View on Github external
return new Promise((resolve, reject) => {
      const email = new MailComposer(request).compile()
      email.keepBcc = true
      email.build((error, raw) => {
        error ? reject(error) : resolve(raw)
      })
    })
  }