philipnorton42 / php-dotmailer
A library that allows integration with the dotMailer API.
0.1
2015-07-03 15:31 UTC
Requires
- php: >=5.3
Requires (Dev)
- phpunit/phpunit: 4.0.*
This package is auto-updated.
Last update: 2025-03-26 04:03:51 UTC
README
A class to interact with the dotMailer API. In order to use this class you will need an account (with API access) from dotMailer (http://www.dotmailer.com).
Usage:
To get up and running just provide the class with your API username and password;
$dotmailer = new DotMailer('username', 'password');
You can then interact with the methods using the same method names as described in the API documentation (http://www.dotmailer.co.uk/api/). For example to list all address books on your account just use the following
$addressBooks = $dotmailer->ListAddressBooks();
foreach ($addressBooks as $book) {
print $book->ID . ' => ' . $book->Name . PHP_EOL;
}
Not all API methods are implemented just yet, but more will follow.
This project was sponsored by Access (http://www.accessadvertising.co.uk)