feltnerm / node-mailgun

Mailgun API client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HAI!

I transferred this over to my company's repo. After all, they paid for me to make this and for the machine I made it on, so it only seems fair.

Check it out at: Widen/node-mailgun.

Old version left here because GitHub has enough space 😃


mailgun

Mailgun API client.

Getting Started

Install the module with: npm install mailgun

var Mailgun = require('mailgun')
  , mg = new Mailgun('API_KEY', 'domain');

mailgun.post_message({ from: 'mark@feltner.me', to: 'president@whitehouse.gov', text: "Hello, Mr. President", callback: function (err, data) {
    console.log(data);
}});

Documentation

(Coming soon)

Examples

(Coming soon)

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

0.0.1 - 1 Nov 2013

  • Initial public release

License

Copyright (c) 2013 Mark Feltner Licensed under the MIT license.

About

Mailgun API client

License:MIT License


Languages

Language:JavaScript 100.0%