Socket
Socket
Sign inDemoInstall

campaign-sparkpost

Package Overview
Dependencies
51
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    campaign-sparkpost

SparkPost email provider for Campaign


Version published
Maintainers
1
Install size
5.37 MB
Created

Readme

Source

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

Keywords

FAQs

Last updated on 07 Mar 2016

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc