brabia / mailchimp-api
MailChimp API 3.0
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/brabia/mailchimp-api
This package is not auto-updated.
Last update: 2025-10-12 07:39:09 UTC
README
Super easy PHP based MailChimp 3.0 API.
Installation
Using Composer:
composer require brabia/mailchimp-api
composer install
You will then need to:
- add the autoloader to your application.
Or just download the MailChimp.php
file and include it to your project:
require('MailChimp.php');
Examples
$mailChimp = new MailChimp(array(
'apiKey' => 'apiKey'
));
Get user details:
$mailChimp->getUserDetails(array(
'user' => 'user@gmail.com', // user email
'listId' => 'listId' // Your MailChimp listId
));