rmasters/inbox

PHP wrapper for the Inbox API

dev-master 2014-08-02 13:38 UTC

This package is not auto-updated.

Last update: 2024-05-21 01:37:13 UTC


README

A PHP wrapper around the Inbox API.

Build Status Coverage Status Latest Stable Version License

Installation

This Composer package is named rmasters/inbox on Packagist. You can install it:

  • using the Composer tool: composer require "rmasters/inbox:~1",
  • or by adding to your composer.json's require section: "rmasters/inbox": "~1".

This package is early on in development - expect the API to change a little until a v1.0 stable release.

Requirements

Usage

Take a look over the API documentation first, to familiarise yourself with the Inbox concepts.

// Specify a custom server, or use inboxapp.com by default
$inbox = new Inbox\Inbox('http://127.0.0.1:5555/');

// Get namespace (email account) information
$accountId = 'awa6ltos76vz5hvphkp8k17nt';
$account = $inbox->account($accountId); // => Account

// Get messages
$inbox->messages($account)->all(); // => Message[]
$inbox->messages($accountId)->get($messageId); // => Message

Orientation

A few notes and things to watch out for:

  • Given that namespace is a reserved word in PHP, Namespaces are referred to as Accounts.