mailium / api-wrapper-php
Mailium API Wrapper for PHP
Installs: 815
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 0
pkg:composer/mailium/api-wrapper-php
Requires
- php: >=5.2.0
This package is not auto-updated.
Last update: 2025-10-12 01:24:09 UTC
README
For more details about API v3, please visit our help section at https://github.com/mailium/api-wrapper-php
Installation
Simply add the package to your composer.json
file and run composer update
.
"mailium/php-api-wrapper": "dev-master"
Or go to your project directory where the composer.json
file is located and type:
composer require "mailium/php-api-wrapper"
Demo
Either ACCESS_TOKEN or API_KEY must be set.
$mailiumApi = new Mailium\API\MailiumAPI3('ACCESS_TOKEN', 'YOUR_API3_KEY', 'SUBDOMAIN', 'json'); $mailiumApi->run('List.GetList',array()); print_r($mailiumApi->Result);