@bobthered/nodemailer

1.0.1 • Public • Published

@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 <john.doe@johndoe.com>',
  to: 'jane.doe@janedoe.com',
  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)
}

Readme

Keywords

none

Package Sidebar

Install

npm i @bobthered/nodemailer

Weekly Downloads

2

Version

1.0.1

License

MIT

Unpacked Size

4.86 kB

Total Files

10

Last publish

Collaborators

  • bobthered