Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bobthered/nodemailer

Nodemailer wrapper helper.
https://github.com/bobthered/nodemailer

Last synced: 9 days ago
JSON representation

Nodemailer wrapper helper.

Awesome Lists containing this project

README

        

# @bobthered/nodemailer

## Description
Nodemailer wrapper helper.

## Installation
```
npm i @bobthered/nodemailer
```

## Basic Usage
```js
// 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 ',
to: '[email protected]',
subject: 'Email Subject',
text: 'Body of the email goes here',
html: 'Body> of the email goes here',
}

try {
await sendMail(options);
} catch (error) {
console.error(error)
}
```