A simple node library for Embarke, built off SendGrid's node library.
To install simply use npm.
npm install barke
This library may be used just as SendGrid's Node library, however it further implements Embarke's API options:
var barke = require("barke")("your_embarke_username", "your_embarke_password");
barke.send({
to: "example@example.com",
from: "other@example.com",
subject: "Hello World",
text: "My first email through Embarke.",
embarkeapi: {
sendDate: new Date(),
maxSendHours: 24,
campaignId: "My Campaign",
mailAccount: "esp-account-username",
tags: ["My custom tag1", "My tag 2"]
}
}, function(err, json) {
if (err) { return console.error(err); }
console.log(json);
});
Email helps you more powerfully prepare your message to be sent, it is built off SendGrid's Email Object.
To get started create an Email object where params is a javascript object. You can pass in as much or as little to params
as you want.
var barke = require("barke")(api_user, api_key);
var email = new barke.Email(params);
Here is a sample for using it.
var barke = require("barke")(api_user, api_key);
var email = new barke.Email({
to: "foo@example.com",
from: "you@example.org",
subject: "Subject goes here",
text: "Hello world",
embarkeapi: {
sendDate: new Date(),
maxSendHours: 24,
campaignId: "My Campaign",
mailAccount: "esp-account-username",
tags: ["My custom tag1", "My tag 2"]
}
});
barke.send(email, function(err, json) {
if (err) { return console.error(err); }
console.log(json);
});
var params = {
smtpapi: new sengrid.SmtpapiHeaders(),
embarkeapi: {
sendDate: (new Date() | ""),
maxSendHours: null,
campaignId: "",
mailAccount: "",
tags: []
}
to: [],
toname: [],
from: "",
fromname: "",
subject: "",
text: "",
html: "",
bcc: [],
replyto: "",
date: new Date(),
files: [
{
filename: "", // required only if file.content is used.
contentType: "", // optional
cid: "", // optional, used to specify cid for inline content
path: "", //
url: "", // == One of these three options is required
content: ("" | Buffer) //
}
],
file_data: {},
headers: {}
};
NOTE: anything that is available in the Email constructor is available for use in the barke.send
function.
You can set params like you would for any standard JavaScript object.
var barke = require("barke")(api_user, api_key);
var email = new barke.Email({to: "person@email.com"});
email.to = "different@email.com";
email.subject = "This is a subject";
email.embarkeapi = { maxSendHours: 48 };
However, embarkeapi
does not exist by default, and you'll need to check and see if you need to create the object before using it. Therefore it's better to use the Embarke Specific Methods provided by the library.
There are a number of SendGrid default parameters that can be set using a variety of methods provided in the SendGrid Node Library Documentation.
A description of these parameters and their meanings can be found in the Embarke API docs.
You may set the send date a variety of ways.
Setting a send date with no options sets the date to the current time. (This is also the default, if you do nothing.)
var email = new barke.Email();
email.setSendDate();
barke.send(email, function(err, json) { });
You can set the send date with a Date
object.
var email = new barke.Email();
var date = new Date("2011-11-11T11:11:11.111Z");
email.setSendDate(date);
barke.send(email, function(err, json) { });
You can set the send date with a string
.
var email = new barke.Email();
email.setSendDate("2011-11-11T11:11:11.111Z");
barke.send(email, function(err, json) { });
var email = new barke.Email();
email.setMaxSendHours(20);
barke.send(email, function(err, json) { });
var email = new barke.Email();
email.setCampaignId("The Coolest Campaign Ever");
barke.send(email, function(err, json) { });
var email = new barke.Email();
email.setMailAccount("my-sendgrid-account");
barke.send(email, function(err, json) { });
You may add multiple tags using addTag.
var email = new barke.Email();
email.addTag("happy");
email.addTag("go");
email.addTag("lucky");
barke.send(email, function(err, json) { });
You may set the tags using setTags.
var email = new barke.Email();
email.setTags(["super", "nifty"]);
barke.send(email, function(err, json) { });
You may also provide a string if you wish.
var email = new barke.Email();
email.setTags("awesome");
barke.send(email, function(err, json) { });
All options provided by the options parameter are passed through to sendgrid-nodejs, to learn more about what they do see the options in the library's readme.
When filing an issue please include your package.json
and the output of
npm ls barke
to help us isolate and reproduce the issue
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
The existing tests can be run using Mocha with the following command:
npm test
You can run individual tests with the following command:
./node_modules/.bin/mocha [path to test].js
In the future, it would be great to tear out embarkeapi to create an Embarke header generator, similar to SendGrid's smtpapi generator.
Licensed under the MIT License.
Significant portions of this README and library are taken from or inspired by sendgrid-nodejs and smtpapi-nodejs, both are licensed MIT.