@elioenaiferrari/dachshund-js
v1.0.1
Published
Open-source mailer. Register and use for free. forever!
Readme
Dachshund Mailer js client
Examples
const { Mailer } = require('dachshund');
const mailer = new Mailer('your_api_key');
mailer.send({
template: 'default',
context: {
body: {
subject: 'Welcome Dachshund',
title: 'Long live open-source',
description: 'Hello World!',
},
to: {
email: '[email protected]',
name: 'Elioenai Ferrari',
},
},
})
.then(...)
.catch(...);