Skip to content

simon-rad/mailchimp-export-api-php

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Overview

A PHP 5.3+ API client for v1 of the MailChimp Export-API. Please note that we generate this client/wrapper, so while we're happy to look at any pull requests, ultimately we can't technically accept them.

###Usage This can be installed via Composer and our packagist package.


A basic example for the usage of this class:

$mailChimpExportClient = new \MailchimpExport('[your-API-key]');
    $mailChimpExportClient->lists->export(function($dataSet) {
            // you can process the received data here
            foreach ($dataset as $key => $value) {
               echo $key . ' => ' . $value;
            }
        },
        '[list-id]'
        );

About

An export API for mailchimp ori

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%