@bobthered/nodemailer
v1.0.1
Published
Nodemailer wrapper helper.
Downloads
3
Readme
@bobthered/nodemailer
Description
Nodemailer wrapper helper.
Installation
npm i @bobthered/nodemailer
Basic Usage
// import sendMail from repo
import { sendMail } from '@bobthered/nodemailer'
// initiate mail transport
const transport = {
service: 'gmail',
auth: {
pass: 'gmail_password',
user: 'gmail_username_with_email'
}
}
// initiate mail options
const options = {
transport,
from: 'John Doe <[email protected]>',
to: '[email protected]',
subject: 'Email Subject',
text: 'Body of the email goes here',
html: '<b>Body> of the email goes here',
}
try {
await sendMail(options);
} catch (error) {
console.error(error)
}