@sazze/envoy-nodejs
v1.1.0
Published
envoy client libraries for nodejs
Downloads
7
Readme
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
});