Xednese

require 'xednese'

esendex = Esendex.new('[email protected]', 'password')
p esendex.messages.sent.first.summary
#=> "..."

 = esendex.("EX0000")
response = .dispatcher.send('Hey guys', '445275XXX')
p response.message_headers.map(&:id)
#=> ["..."]

Xednese is a client library for interacting with the Esendex REST API. It is currently under active development and should not be considered stable enough for general use.

Running locally

Clone the repo, then to get the run the tests:

$ gen install bundler
$ bundle install
$ bundle exec rake
...