Skip to content

Super-simple, minimum abstraction MailChimp API v2 / v3 wrapper, in PHP

License

Notifications You must be signed in to change notification settings

wesbos/mailchimp-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MailChimp API

Super-simple, minimum abstraction MailChimp API v2 wrapper, in PHP.

For API v3 version, see the api-v3 branch.

I hate complex wrappers. This lets you get from the MailChimp API docs to the code as directly as possible.

Requires PHP 5.3 and a pulse. Abstraction is for chimps.

Installation

You can install the mailchimp-api using Composer:

composer require drewm/mailchimp-api

You will then need to:

  • run composer install to get these dependencies added to your vendor directory
  • add the autoloader to your application with this line: require("vendor/autoload.php")

Alternatively you can just download the MailChimp.php file and include it manually.

Examples

List lists (lists/list method)

<?php
$MailChimp = new \Drewm\MailChimp('abc123abc123abc123abc123abc123-us1');
print_r($MailChimp->call('lists/list'));

Subscribe someone to a list

<?php
$MailChimp = new \Drewm\MailChimp('abc123abc123abc123abc123abc123-us1');
$result = $MailChimp->call('lists/subscribe', array(
				'id'                => 'b1234346',
				'email'             => array('email'=>'davy@example.com'),
				'merge_vars'        => array('FNAME'=>'Davy', 'LNAME'=>'Jones'),
				'double_optin'      => false,
				'update_existing'   => true,
				'replace_interests' => false,
				'send_welcome'      => false,
			));
print_r($result);

Note for contributors: This is not Code Golf.

About

Super-simple, minimum abstraction MailChimp API v2 / v3 wrapper, in PHP

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%