EmailCenterApi
A RubyGem That wraps EmailCenter's maxemail JSON Api
see http://maxemail.emailcenteruk.com/manual/doku.php?id=maxemail:v6:webservices
Installation
Add this line to your application's Gemfile:
gem 'email_center_api'
And then execute:
$ bundle
Or install it yourself as:
$ gem install email_center_api
Usage
Experimental and Feature Incomplete. Will allow some manipulation of lists and recipients.
Try it out with something like this:
require 'rubygems'
require 'email_center_api'
require 'pry'
EmailCenterApi.configure do |config|
config.username = 'yourusername'
config.password = 'yourpassword'
end
binding.pry
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Write Some Tests
- Write Some Code
- Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request