Mailchimp API v3

Gem Version Gem downloads Build status Code quality Coverage Dependency Status

A simple gem to interact with Mailchimp through the Mailchimp API v3

Project status

This gem currently does everything I need for my project but it is far from complete. I will willingly accept good quality pull requests to complete the feature set.

My own requirements are for subscription management for my mailing list, so the gem can add and remove members from a list and manage their interests.

Installation

Add this line to your application's Gemfile:

gem 'mailchimp_api_v3'

And then execute:

$ bundle

Or install it yourself as:

$ gem install mailchimp_api_v3

Usage

The Mailchimp API documentation is here: http://kb.mailchimp.com/api. Their suggestions for subscriber management are here: http://kb.mailchimp.com/api/article/how-to-manage-subscribers.

To connect to the Mailchimp API you need to supply an API key. You can do this explicitly when you connect, or you can set an environment variable MAILCHIMP_API_KEY.

Examples:

Mailchimp.connect(my_api_key) # Uses the API key in my_api_key
Mailchimp.connect # Uses ENV['MAILCHIMP_API_KEY']
Mailchimp.connect.lists
mailchimp = Mailchimp.connect
list = mailchimp.lists.find_by name: 'My first list'
mailchimp = Mailchimp.connect
member = mailchimp.lists('e73f5910ca').members('[email protected]')
member.name # => "Ann Example"
member.update last_name: 'Williams'

Contributing

Developer

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Testing

The tests use Rspec and VCR. To avoid including my test API key in the VCR cassettes the tests use Erb to insert an api key at runtime. Whatever API key is available will allow the tests to pass.

If you need to add more cassettes you can use your own test API key then edit the VCR cassette in the same way before you issue the pull request.

Acknowledgements

I used the sample code in https://github.com/mailchimp/APIv3-examples as my starting point for this gem. Thanks to the Mailchimp developers for the head start.