Skip to content

studiofrenetic/laravel-mailchimp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mailchimp for LaravelPHP

This package is a simple wrapper for working w/ the Mailchimp API.

Install

In application/bundles.php add:

'mailchimp' => array('auto' => true),

Config

Copy the sample config file to application/config/mailchimp.php and input the proper information.

Usage

Call the desired method and pass the params as a single array. Don't worry about passing the API key.

$response = Mailchimp::list_subscribe(array(
	'id' => '1234567',
	'email_address' => '[email protected]',
));

Just make sure you pass all the required fields.

Helper Tasks

I've included a helper task for printing all lists associated w/ your account. Makes it easy to find list ids.

$ php artisan mailchimp::lists

About

A LaravelPHP package for working w/ Mailchimp.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%