mailshooter
v1.1.4
Published
## 1. Go to mailshooter.dev and purchase a plan to receive your API-KEY https://mailshooter.dev
Readme
mailshooter
1. Go to mailshooter.dev and purchase a plan to receive your API-KEY
https://mailshooter.dev
2. Install mailshooter
npm i mailshooter3. Start sending emails
const ms = require('mailshooter');
ms({
apikey: 'YOUR-API-KEY',
from: '[email protected]',
to: '[email protected]',
subject: 'Hello World',
html: 'This is my first MailShooter Email!'
}).then(console.log);