GitXplorerGitXplorer
t

nodemailer-bento-transport

public
0 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
255ae137995aecfe2c9a1b4de622f4f36383f6a4

Doc fixes

tthisboyiscrazy committed a year ago
Unverified
0f4bbb754da5a04db455ec376bfb2303d6df3f98

README

tthisboyiscrazy committed a year ago
Unverified
8caecf56033f34d29b6241056ca03eab2fd7b163

cleanup

tthisboyiscrazy committed a year ago
Unverified
70fc3a0b9fc553fe57083625bcc876427c90cd4f

version change

tthisboyiscrazy committed a year ago
Unverified
c1850cdca0904e160f5893e383bd6b4964f7a022

init

tthisboyiscrazy committed a year ago
Verified
a689216e6cfd7a6e7daba553a739950d4ef0922d

Initial commit

tthisboyiscrazy committed a year ago

README

The README file for this repository.

Transport for nodemailer for bento

nodemailer-bento-transport

What is this?

This is the transport plugin that goes with nodemailer to send email using Bento.

Example

const nodemailer = require('nodemailer');
const bento = require('nodemailer-bento-transport');

// This is your API key that you retrieve from www.mailgun.com/cp (free up to 10K monthly emails)
const options = {
    publishablekey: 'pk-123', //Your Publishable Key
    secretkey: 'sk-123', //Your Secret Key
    siteUuid: '1234-12434', //Your Site UUID        
}

const nodemailerBento = nodemailer.createTransport(bento(options));