A node.js wrapper for MailChimp's Mandrill API.
npm install mandrill-nodejavascript
//Include the mandrill module
var mandrill = require('mandrill');
`
##Requirements
* A MailChimp account, Mandrill service enabled, Mandrill API key. See the Getting Started guide for more information http://help.mandrill.com/customer/portal/topics/214457-getting-started/articles
* node.js 0.8.0+
* request 2.9.100+
* underscore 1.3.3+
##Examples
`javascript
// The key can be set either by passing the a an object which only
// contains the key, ex.
mandrill.call({'key':'mykey'});
/**
* They key could also be set with the request event. All request events
* need to have at least a type and a call property set and these values
* need to correspond to the valid types and calls recognized by the Mandrill
* service.
*
* Here is an example of a call to Mandrill API's users.info
* The docs for this call can be found at http://mandrillapp.com/api/docs/users.html#method=info
*/
mandrill.call({'type':'users','call':'info'}, function(data){
console.log(data);
});
// For a list of valid calls please visit http://mandrillapp.com/api/docs/index.html
``