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
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
- Fork it ( https://github.com/ainformatico/mailinator/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - 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.