jdrago999 / mailcatcher-api

MailCatcher REST API SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MailCatcher::API

MailCatcher REST API SDK

Installation

# Gemfile

gem 'mailcatcher-api', '0.0.1'

Configuration

If you run MailCatcher on localhost using its default 1080 port, then you can skip configuration block

# spec/spec_helper.rb

require 'mailcatcher/api'

MailCatcher::API.configure do |config|
  config.server = 'http://127.0.0.1:1080'
end

Usage

Integration / acceptance tests

mailbox = MailCatcher::API::Mailbox.new
expect(mailbox.count).to be >= 1

confirmation_email = mailbox.messages.first
expect(confirmation_email.to.count).to be 1
expect(confirmation_email.to.first).to eq('user@example.com')
expect(confirmation_email.subject).to eq('User Confirmation Email')

confirmation_link = confirmation_email.links.select{ |i| i[/confirm/] }.first
confirmation_code = confirmation_link.split('/').last

post '/api/account/confirm.json', JSON.dump('confirmation_token' => confirmation_code)
expect(last_response.status).to be 200

Available email attributes

mailbox = MailCatcher::API::Mailbox.new
email = mailbox.messages.first

email.raw
email.message_id
email.date

email.from
email.to
email.subject
email.body

email.mime_type
emai.charset
emai.content_type

emai.links

# Delete a specific message:
email.delete

# Clear all messages in the mailbox:
mailbox.clear

TODO

  • Implement CollectionProxy for the mailbox messages similar to ActiveRecord.

    And support such methods:

    mailbox.find(<attr>: '')
    mailbox.find(<attr>: //)

    Where attr could be

    • from
    • to
    • subject
    • link
  • Support attachments

Copyright

Copyright (c) 2014 Andrii Vakarev and Contributors. See LICENSE for details.

About

MailCatcher REST API SDK

License:MIT License


Languages

Language:Ruby 100.0%