tormjens/posteio

A PHP SDK for the Poste.io API with support for Laravel 5

Downloads

7

Stars

0

Version

0.1

Poste.io PHP SDK

Poste.io is a full-featured mail server that features a REST API for tasks like creating mailboxes and adding domains.

Installation

  1. Install it using Composer
composer require tormjens/posteio

Using in Laravel

If you're using Laravel 5.5, you can go ahead and skip to number 3.

  1. Add the service provider to the providers array in your config/app.php.
    'TorMorten\Posteio\Providers\PosteioServiceProvider',
  1. Add the facade in config/app.php
    'Posteio' => TorMorten\Posteio\Posteio::class,
  1. Add the credentials in config/services.php
    'posteio' => [
        'host' => 'https://myhost.com',
        'username' => '[email protected]',
        'password' => 'secret'
    ],

Outside Laravel

Instantiate the class like so:

$posteio = new TorMorten\Posteio\Client('https://myhost.com', '[email protected]', 'secret');

Usage

The API is split into two services; boxes and domains. Both have the same CRUD functions. You can find the complete documentation of what each resource takes a its parameters on their API docs/sandbox.

Laravel

In Laravel the client is bound to the service container and can be instantiated in two different ways.

The first is via dependency injection.

Route::post('create-account', function(TorMorten\Posteio\Client $posteio) {
    $posteio->boxes()->create(['name' => 'John Doe', 'email' => '[email protected]']);
});

The second is via resolving it via the service container.

app('posteio')->boxes()->create(['name' => 'John Doe', 'email' => '[email protected]']);
// or
app('TorMorten\Posteio\Client')->boxes()->create(['name' => 'John Doe', 'email' => '[email protected]']);

TODO

  • Create a better readme.
tormjens

Author

tormjens