🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

campaign-sparkpost

SparkPost email provider for Campaign

1.0.0
latest
Version published
Maintainers
1
Created

campaign-sparkpost

Build Status Coverage Status

SparkPost provider for Campaign.

Usage

var campaign = require('campaign');
var client = campaign({
  provider: require('campaign-sparkpost')({
    key: 'YOUR_API_KEY',
    campaign: 'my mailing'
  })
});
client.send(...) // as usual

Options

options.key

Your SparkPost API key. If not included, campaign-sparkpost will attempt to use the SPARKPOST_API_KEY environment variable.

options.num_rcpt_errors

(Optional) Defaults to 3. The total number of errors to return, there will be at most one error per recipient. Setting this allows you to send large batches but not be overwhelmed by errors.

options.campaign

(Optional) Defaults to model._template. A SparkPost campaign to use when when sending. This can be used to search for mailings in SparkPost later.

Tags

Campaign allows users to pass a tags array (defaults to [model._template]). If passed, the tags will be set on the SparkPost transmission metadata object under the tags key and on each recipient as recipient.tags. Recipients have a maximum of 10 tags, so only the first 10 are set. Transmission metadata will contain the full set of tags. The transmission metadata and recipient tags will be available in SparkPost webhook data.

Merge Data

Any provider.merge data will be passed through to SparkPost. provider.merge[*] will be set as substitution data at the transmission level. Merge data for recipients (e.g., provider.merge['email@example.com']) will be set as substitution data for that recipient.

License

Apache 2.0

FAQs

Package last updated on 07 Mar 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts