1.1.0 • Published 9 years ago

@sazze/envoy-nodejs v1.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

Tests must be run as root (to bind to port 80):

sudo npm test

Example:

var SendClient = require('@sazze/envoy-nodejs').SendClient;
var TransactionEmail = require('@sazze/envoy-nodejs').TransactionEmail;

var email = new TransactionEmail();

var client = new SendClient();

client.sendEmail(email, function (err, resp) {
    // do something with the response
});