apostle
v0.1.1
Published
Node.js API client for Apostle.io
Downloads
5
Readme
apostle
Node.js API client for Apostle.io
Installation
npm install apostle
Basic Use
var apostle = require('apostle')('DOMAIN_KEY');
apostle({
email: '[email protected]',
template: 'test-template',
values: {
name: 'Andrew',
hello: 'world'
}
}, function (err, response) {
if (err) return; // Something really bad happened
console.dir(response);
});
Testing
npm test