Skip to content

Wunderdata/MailchimpBundle

 
 

Repository files navigation

MailchimpBundle

Symfony2 Bundle for Mailchimp 2.0 API and Export 1.0 API

Build Status

Installation

The bundle can be installed via Composer. You can find it on Packagist.

Configuration

Just add the following lines to your app/config/config.yml

wunderdata_mailchimp:
    apikey: verysecretkey-us1
    opts:
        debug: false
        timeout: 600

Usage

The bundle uses the official PHP implementation of the Mailchimp 2.0 API. There is no wrapper class or anything around it. They have an example project to get you started.

You can get a ready-to-use instance of the Mailchimp client from the container:

// example action in a controller

public function exampleAction()
{
    $client = $this->get('wunderdata_mailchimp.client');
}

Unfortunately there is no official PHP implementation of the Export 1.0 API. Its implementation can be found in the class \Wunderdata\MailchimpBundle\Client\ExportClient. It is using Buzz internally to perform the needed HTTP requests.

You can get a ready-to-use instance of the export client from the container:

// example action in a controller

public function exampleAction()
{
    $client = $this->get('wunderdata_mailchimp.export_client');
}

About

Symfony2 Bundle for Mailchimp 2.0 API and Export 1.0 API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%