TrueDrago / TDSMailchimpBundle

Symfony service wrapper for Mailchimp v3 lib https://github.com/pacely/mailchimp-api-v3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TDSMailchimpBundle

TDSMailchimpBundle is just a service wrapper for Mailchimp API v3 - PHP Wrapper by Pacely

Installation

Step 1: Download Bundle using composer

Require the bundle with composer:

$ composer require tds/mailchimp-bundle "dev-master"

Composer will install the bundle to your project's vendor directory.

Step 2: Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new TDS\MailchimpBundle\MailchimpBundle(),
        // ...
    );
}

Step 3: Configure your application's config.yml

tds_mailchimp:
    api_key: 'your api key should be here'

Step 4: Read the docs

Investigate the main bundle documentation

License

This bundle is under the MIT license. See the complete license in the bundle:

LICENSE

About

Symfony service wrapper for Mailchimp v3 lib https://github.com/pacely/mailchimp-api-v3

License:MIT License


Languages

Language:PHP 100.0%