Skip to content

cakemail/Wrapper-API-NodeJS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NodeJS package to consume the CakeMail API

You can find the CakeMail API documentation on the Dev Portal.

Build status Build Status

Usage

Example call to List.GetList:

var cakemail = require("cakemail-api-wrapper");

var client = new cakemail.Client({
  apiKey: "<YOUR API KEY>"
});

client.execute("List", "GetList", {
  user_key: "<YOUR USER KEY>"
}, function(err, data) {
  console.log(err);
  console.log(data);
});

About

A NodeJS consumer of CakeMail's API

Resources

Stars

Watchers

Forks

Packages

No packages published