MonkeyParty
An extremely young API for interacting with the MailChimp API
Currently only supports
- adding api keys
- finding lists by name
- batch subscribing
- unsubscribing
Uses the excellent HTTParty and HappyMapper tools and is well tested
Installation
Add this line to your application's Gemfile:
gem 'monkey_party'
And then execute:
$ bundle
Or install it yourself as:
$ gem install monkey_party
Usage
list = MonkeyParty::List.find_by_name("list_name")
list.create_subscribers([MonkeyParty::Subscriber.new("[email protected]")])
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request