A simple PHP library for the Mailjet API v1.
- PHP 5.4+
- zend-http
Note: There is also a version available for the Zend Framework 1.
The recommended way is through Composer.
composer require narno/mailjet-api
<?php
use Narno\Mailjet\Api as MailjetApi;
try {
$api = New MailjetApi('key', 'secret_key');
// fetches user's infos...
$userInfos = $api->user->infos();
if ($userInfos->status == 'OK') {
// ...and displays
print_r($userInfos->infos);
}
} catch (Exception $e) {
echo $e->getMessage();
}
Mailjet API documentation: http://www.mailjet.com/docs/api.
Free software distributed under the terms of the MIT license.