We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Dowload/Watch/Fork at github
CodeIgniter Library for MailChimp API v1.3 MailChimp API v1.3 The CodeIgniter Way
Note:
This requires that you have an account with MailChimp, and are able to obtain your API Key:
Installation:
To use:
First, to load the library:
$config = array( 'apikey' => '' // Insert your api key 'secure' => FALSE // Optional (defaults to FALSE) ); $this->load->library('MCAPI', $config, 'mail_chimp');
Then, to use:
if($this->mail_chimp->listSubscribe($list_id, $email)) { // $email is now subscribed to list with id: $list_id }
Call all other methods in this manner. See full documentation on the MailChimp API.