Project

mailinator

0.15
Repository is archived
No release in over 3 years
Low commit activity in last 3 years
Mailinator REST API wrapper
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16.2
~> 12.3.1

Runtime

~> 3.5.4
 Project Readme

Build Status Code Climate Coverage Status

Mailinator

Mailinator REST API wrapper, http://mailinator.com/apidocs.jsp

Installation

Add this line to your application's Gemfile:

gem 'mailinator'

And then execute:

$ bundle

Or install it yourself as:

$ gem install mailinator

Usage

Configuration

Mailinator.configure do |config|
  config.token = 'YOURTOKEN'
end

Email

Access to an email

email = Mailinator::Email.get('email-abcd1234')

Access to a private email

email = Mailinator::Email.get('email-abcd1234', private_domain: true)

Now you have access to some methods:

  • email.from_full
  • email.date
  • email.received
  • email.from
  • email.to
  • email.subject
  • email.request_id
  • email.body
  • email.body_base_64
  • email.orig_from
  • email.id
  • email.time
  • email.seconds_ago

Inbox

Access to an inbox

inbox = Mailinator::Inbox.get('inbox-abcd1234')

This returns a list of the emails for the given inbox, but not the emails themselves. To download an Email you need:

email = inbox.messages.first.download

or

inbox.messages.first.download do |email|
  [...]
end

To delete an Email you need:

inbox.messages.first.delete

Access to a private inbox

inbox = Mailinator::Inbox.get('inbox-abcd1234', private_domain: true)

The 'download' and 'delete' work the same with private domain.

Contributing

  1. Fork it ( https://github.com/ainformatico/mailinator/fork )
  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 a new Pull Request

License

Copyright (c) 2014 Alejandro Dev.

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.