UNPKG

mailchimp-v3

Version:

Basic wrapper for MailChimp API V3.0 with some nice toppings

35 lines (31 loc) 694 B
var mailchimp = require('../index.js'); mailchimp.setApiKey('YOUR-API-KEY-HERE'); //mailchimp.setDebug(true); var batch = mailchimp.createBatch('lists/YOUR-LIST-ID-HERE/members', 'POST'); var batches = [ { body: { status : 'subscribed', email_address : 'steve@jobs.com' } }, { body: { status : 'subscribed', email_address : 'tom@lightbulbs.com' } }, { body: { status : 'subscribed', email_address : 'powder@puff.com' } } ]; batch .add(batches) .send() .then(function(result){ console.log(result); }) .catch(function(error){ console.log(error); });