doowebdev / mailchimp-api
Doowebdev PHP MailChimp API v2 Wrapper using Guzzle
Requires
- php: >=5.4.0
- guzzlehttp/guzzle: ~5.0
This package is not auto-updated.
Last update: 2024-10-26 17:02:58 UTC
README
An Easy to use PHP wrapper for the MailChimp API v2 using Guzzle
#Installation:
Requires: php 5.4+ and Guzzle (will be added automatically when you install this package).
To install the latest version of doowebdev/mailchimp-api simply add it to your composer.json file in the 'require section':
"doowebdev/mailchimp-api": "dev-master"
Next Run 'composer install' in your command console to add the package to your projects vendor folder.
Once the package is installed, you need to initialize the MailChimpApi class:
require 'vendor/autoload.php'; use Doowebdev\MailChimpApi;
How to use
Assuming you are using php classes in your application use the following as an example:
In a controller:
use Doowebdev\MailChimpApi; class SomeClass { public function someMethod() { $mc = new MailChimpApi('YOUR-MAILCHIMP-APIKEY-GOES-HERE'); //We are using the 'lists/subscribe' method to subscribe a user/visitor to our newsletter list. $results = $mc->run('lists/subscribe',[ 'id' => 'YOUR-LIST-ID-GOES-HERE', 'email' => ['email'=>'subscribers@email.com'], 'merge_vars' => ['FNAME'=>'subscribers_firstname', 'LNAME'=>'subscribers_lastname'], 'double_optin' => true, 'update_existing' => true, 'replace_interests' => false, 'send_welcome' => true, ]); var_dump($results); } }
Thats it!
To get the complete list of methods you can use visit the official MailChimp API documentation here: https://apidocs.mailchimp.com/api/2.0/#method-sections