Skip to content

Instantly share code, notes, and snippets.

@Showcase-Joz
Last active December 25, 2015 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Showcase-Joz/6941488 to your computer and use it in GitHub Desktop.
Save Showcase-Joz/6941488 to your computer and use it in GitHub Desktop.
This variation includes two name fields, a subject line and most importantly mailchimp integration. allowing you to add users directly to a mailing list upon their communication with you.
<?php
// LICENSE (MIT).
/*
Copyright © 2012 Adrian Testa-Avila
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
// CONFIGURATION.
// Change to use your name and email address(es).
$mailConfig = array(
'Jon Doe' // YOUR NAME
,'webmaster@example.com' // YOUR EMAIL ADDRESS
);
// this variable will hold our message to the user.
$OUTPUT = '';
// CONTROLLER.
// SEE BELOW for function definitions.
// check if form was submitted, and if the submission was valid.
if( formSubmission() && ( $formFields = validateFormSubmission( $errors )) ){
// if $errors is empty, then everything passed validation.
if( !$errors ){
// compose & send the email (passing the $mailConfig options).
if( sendEmail( $mailConfig,$formFields ) ){
// if the mail was sent, create a success message.
$OUTPUT = successMessage();
}else{
// if mail was not sent, create an error message.
$OUTPUT = failureMessage();
}
}else{
// if $errors was NOT empty, create an error message.
$OUTPUT = errorMessage( $errors );
}
}
// At this point, $OUTPUT contains the appropriate response to display to the user
// (or is empty if the form has not been submitted yet).
// We simply print it in the HMTL template below.
// you can get fancier if you like.
?>
<!doctype HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PHP Contact Form Example</title>
<style>
/* change styles to suit */
form{ position: relative; width: 60%; min-width: 600px; margin: 0 auto; padding: 1em; background: #eee; color: #333; }
label{ display: inline-block; width: 190px; }
input{ width: 400px; }
textarea{ width: 90%; height: 10em; }
input[type="submit"]{ width: auto; }
</style>
</head>
<body>
<?php
if(isset($_POST)) echo $OUTPUT;
?>
<h1>Contact Us</h1>
<form action="" method="post">
<?php echo $OUTPUT; ?>
<p><label for="yourmessage">What would you like to say?</label>
<textarea name="yourmessage" placeholder="Write your message here."></textarea></p>
<p><label for="fname">Your name: </label>
<input name="fname"></p>
<p><label for="lname">Your name: </label>
<input name="lname"></p>
<p><label for="yoursubject">Your email address: </label>
<input type="text" name="yoursubject"></p>
<p><label for="youremail">Your email address: </label>
<input type="email" name="youremail"></p>
<div class="form-group">
<label>
<input type="checkbox" value="yes" name="emailUpdates"> subscribe?
</label>
<p class="help-block">Subscribe to our newsletter</p>
</div>
<p><input type="submit" name="exampleform" value="Send Message"></p>
</form>
</body>
</html>
<?php
// FUNCTION DEFINITIONS.
/**
* this function checks if the form was submitted or not.
* it also checks for evil magic quotes.
*
* @return bool TRUE if form was submitted, FALSE otherwise.
*/
function formSubmission(){
// check if submit button was pressed.
if( isset( $_POST['exampleform'] ) ){
// check for magic quotes
if( get_magic_quotes_gpc() ){ stripslashes_deep( $_POST ); }
// TRUE!
return true;
}
// FALSE!
return false;
}
/**
* recursively strips slashes from string values. you wouldn't need to do this if you were using PHP 5.4+ :)
* @see http://php.net/stripslashes
*
* @param mixed $value a string (or array of strings, e.g., POST input) to strip slashes from.
* @return mixed the slash-stripped value(s).
*/
function stripslashes_deep( $value ){
$value = is_array( $value ) ?
array_map( 'stripslashes_deep',$value ):
stripslashes( $value );
return $value;
}
/**
* validates each field in the form and returns them.
* also sets error messages if there are any problems.
* @param array &$errors container for error messages
* @return array array of valid form fields
*/
function validateFormSubmission( &$errors=array() ){
// we've got three fields to check. we're going to return them in this array:
$formData = array( '','','' );
// message: must not be empty
if( empty( $_POST['yourmessage'] ) ){
$errors['yourmessage'] = "Please write a message.";
}else{
$formData[4] = $_POST['yourmessage'];
}
// name: must not be empty
if( empty( $_POST['yoursubject'] ) ){
$errors['yoursubject'] = "Please provide a subject category for the message.";
}else{
$formData[3] = $_POST['yoursubject'];
}
// name: must not be empty
if( empty( $_POST['fname'] ) ){
$errors['fname'] = "Please provide your first name.";
}else{
$formData[0] = $_POST['fname'];
}
// name: must not be empty
if( empty( $_POST['lname'] ) ){
$errors['lname'] = "Please provide your last name.";
}else{
$formData[1] = $_POST['lname'];
}
// email: must not be empty
if( empty( $_POST['youremail'] ) ){
$errors['youremail'] = "Please provide your email address.";
// must also validate as a single email address, *with* a domain extension.
// (validating email addresses is nearly impossible.
// the only way to be sure is to send an email and get a reply.
// this is a good compromise.)
}elseif( !filter_var( $_POST['youremail'],FILTER_VALIDATE_EMAIL ) || !preg_match( '#\w\.\w{2,}$#',$_POST['youremail'] ) ){
$errors['youremail'] = "Please re-enter your email address.";
}else{
$formData[2] = $_POST['youremail'];
}
// SUBSCRIBE TO MAILING LIST OPTION - ADD TO MAILCHIMP USING API
if ( $_POST['emailUpdates'] == 'Yes' );
$formData[5] = $_POST['emailUpdates'];
{
// Include Mailchimp API class
require_once('MCAPI.class.php');
// Your API Key: http://admin.mailchimp.com/account/api/
$api = new MCAPI('APIKEY');
// Your List Unique ID: http://admin.mailchimp.com/lists/ (Click "settings")
$list_id = "LIST-ID";
// Variables in your form that match up to variables on your subscriber
// list. You might have only a single 'name' field, no fields at all, or more
// fields that you want to sync up.
$merge_vars = array(
'fname' => $_POST['fname'],
'lname' => $_POST['lname']
);
// SUBSCRIBE TO LIST
if ( $api->listSubscribe($list_id, $_POST['youremail'], $merge_vars) === true ){
$mailchimp_result = 'Success! Check your email to confirm sign up.';
} else {
$mailchimp_result = 'Error: ' . $api->errorMessage;
}
}
// return valid form fields
return $formData;
}
/**
* composes message and sends email. Basic ACSII; needs extra work to be multibyte-compatible.
*
* @param array $mailConfig array containing: [myname,myemail]
* @param array $formFields array containing: [fname,youremail,yourmessage]
* @return bool TRUE if mail sent successfully; FALSE otherwise.
*/
function sendEmail( $mailConfig,$formFields ){
// get config options
list( $myname,$myemail ) = $mailConfig;
// get message fields
list( $fname,$lname,$youremail,$yoursubject,$yourmessage,$emailUpdates ) = $formFields;
// write email headers
$headers = "From: $myemail\r\n";
$headers .= "Reply-to: $youremail\r\n";
$headers .= "X-Mailer: PHP Contact Form Example\r\n";
// submission time (will be UTC: if you want your local time instead, you'll need to change this.)
$t = new DateTime( '@'.time() );
$datetime = $t->format( 'r' );
// compose message
$subject = "$yoursubject for [COMPANY]";
$message = "
Message Category: $yoursubject
======================================================================
$fname $lname sent you the following message:
----------------------------------------------------------------------
$yourmessage
----------------------------------------------------------------------
Details:
$fname $lname
$youremail
Yes is Mailchimp [$emailUpdates]
Sent on $datetime";
// wordwrap
$message = wordwrap( $message,70 );
// send email
if( mail( $myemail,$subject,$message,$headers ) ){
return true;
}else{
return false;
}
}
/**
* composes a success message (edit to your heart's content).
*
* @return string HTML markup
*/
function successMessage(){
return "<div class='message'>
<div class='alert alert-success'>
<div class='row'>
<button type='button' class='close' data-dismiss='alert'>×</button>
<div class='col-md-2'> <i class='icon-check-sign icon-5x pull-left' style='margin-top: 65px;'></i>
</div>
<div>
<h2>Good job $fname !</h2>
<p class='lead-half'><strong style='line-height: 30px;'>You have successfully sent this email <i class='icon-envelope-alt'></i></strong>
<br/>expect a reply soon! Thank you!
<span
class='hidden-lg'>
<br />Or you can drop us a <a href='sms:+44000000000' title='sms message Showcase Imagery, its easy'
class='btn btn-warning'><i class='icon-mobile-phone'></i> text message</a> to
accompany your email too.</span>
</p>
</div>
</div>
</div>
</div>";
}
/**
* composes a failure message (i.e., the *form* was okay, but *sending* the email failed).
* (edit to your heart's content. you might want to add error logging here, or even provide a <mailto> link for the user.)
*
* @return string HTML markup
*/
function failureMessage(){
return "<div class='message error'>
<div class='alert alert-error'>
<div class='row'>
<button type='button' class='close' data-dismiss='alert'>×</button>
<div class='col-md-2'> <i class='icon-warning-sign icon-5x pull-left' style='margin-top: 65px;'></i>
</div>
<div>
<h2 style='color:#fff;'>Error</h2>
<p class='lead-half'><strong style='line-height: 30px;'>We're sorry, we were unable to send your message. Please try again.
<span
class='hidden-lg'>
<br />Please try and drop us a <a href='sms:+44000000000' title='sms message Showcase Imagery, its easy'
class='btn btn-warning'><i class='icon-mobile-phone'></i> text message</a> instead.</span>
</p>
</div>
</div>
</div>
</div>";
}
/**
* composes an error message. nothing fancy.
*
* @param array $errors an array of error messages.
* @return string
*/
function errorMessage( $errors=array() ){
if( empty( $errors ) ){ return; }
$message = implode( "<br>",$errors );
return "<div class='message error'>
<div class='alert alert-error'>
<div class='row'>
<button type='button' class='close' data-dismiss='alert'>×</button>
<div class='col-md-2'> <i class='icon-warning-sign icon-5x pull-left' style='margin-top: 65px;'></i>
</div>
<div>
<h2 style='color:#fff;'>Error</h2>
<p class='lead-half'><strong style='line-height: 30px;'>We're sorry, we were unable to send your message. Please try again.
<span
class='hidden-lg'>
<br />Please try and drop us a <a href='sms:+44000000000' title='sms message Showcase Imagery, its easy'
class='btn btn-warning'><i class='icon-mobile-phone'></i> text message</a> instead.</span>
</p>
</div>
</div>
</div>
</div>";
}
?>
<?php
class MCAPI {
var $version = "1.3";
var $errorMessage;
var $errorCode;
/**
* Cache the information on the API location on the server
*/
var $apiUrl;
/**
* Default to a 300 second timeout on server calls
*/
var $timeout = 300;
/**
* Default to a 8K chunk size
*/
var $chunkSize = 8192;
/**
* Cache the user api_key so we only have to log in once per client instantiation
*/
var $api_key;
/**
* Cache the user api_key so we only have to log in once per client instantiation
*/
var $secure = false;
/**
* Connect to the MailChimp API for a given list.
*
* @param string $apikey Your MailChimp apikey
* @param string $secure Whether or not this should use a secure connection
*/
function MCAPI($apikey, $secure=false) {
$this->secure = $secure;
$this->apiUrl = parse_url("http://api.mailchimp.com/" . $this->version . "/?output=php");
$this->api_key = $apikey;
}
function setTimeout($seconds){
if (is_int($seconds)){
$this->timeout = $seconds;
return true;
}
}
function getTimeout(){
return $this->timeout;
}
function useSecure($val){
if ($val===true){
$this->secure = true;
} else {
$this->secure = false;
}
}
/**
* Unschedule a campaign that is scheduled to be sent in the future
*
* @section Campaign Related
* @example mcapi_campaignUnschedule.php
* @example xml-rpc_campaignUnschedule.php
*
* @param string $cid the id of the campaign to unschedule
* @return boolean true on success
*/
function campaignUnschedule($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignUnschedule", $params);
}
/**
* Schedule a campaign to be sent in the future
*
* @section Campaign Related
* @example mcapi_campaignSchedule.php
* @example xml-rpc_campaignSchedule.php
*
* @param string $cid the id of the campaign to schedule
* @param string $schedule_time the time to schedule the campaign. For A/B Split "schedule" campaigns, the time for Group A - 24 hour format in <strong>GMT</strong>, eg "2013-12-30 20:30:00"
* @param string $schedule_time_b optional -the time to schedule Group B of an A/B Split "schedule" campaign - 24 hour format in <strong>GMT</strong>, eg "2013-12-30 20:30:00"
* @return boolean true on success
*/
function campaignSchedule($cid, $schedule_time, $schedule_time_b=NULL) {
$params = array();
$params["cid"] = $cid;
$params["schedule_time"] = $schedule_time;
$params["schedule_time_b"] = $schedule_time_b;
return $this->callServer("campaignSchedule", $params);
}
/**
* Schedule a campaign to be sent in batches sometime in the future. Only valid for "regular" campaigns
*
* @section Campaign Related
*
* @param string $cid the id of the campaign to schedule
* @param string $schedule_time the time to schedule the campaign.
* @param int $num_batches optional - the number of batches between 2 and 26 to send. defaults to 2
* @param int $stagger_mins optional - the number of minutes between each batch - 5, 10, 15, 20, 25, 30, or 60. defaults to 5
* @return boolean true on success
*/
function campaignScheduleBatch($cid, $schedule_time, $num_batches=2, $stagger_mins=5) {
$params = array();
$params["cid"] = $cid;
$params["schedule_time"] = $schedule_time;
$params["num_batches"] = $num_batches;
$params["stagger_mins"] = $stagger_mins;
return $this->callServer("campaignScheduleBatch", $params);
}
/**
* Resume sending an AutoResponder or RSS campaign
*
* @section Campaign Related
*
* @param string $cid the id of the campaign to pause
* @return boolean true on success
*/
function campaignResume($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignResume", $params);
}
/**
* Pause an AutoResponder or RSS campaign from sending
*
* @section Campaign Related
*
* @param string $cid the id of the campaign to pause
* @return boolean true on success
*/
function campaignPause($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignPause", $params);
}
/**
* Send a given campaign immediately. For RSS campaigns, this will "start" them.
*
* @section Campaign Related
*
* @example mcapi_campaignSendNow.php
* @example xml-rpc_campaignSendNow.php
*
* @param string $cid the id of the campaign to send
* @return boolean true on success
*/
function campaignSendNow($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignSendNow", $params);
}
/**
* Send a test of this campaign to the provided email address
*
* @section Campaign Related
*
* @example mcapi_campaignSendTest.php
* @example xml-rpc_campaignSendTest.php
*
* @param string $cid the id of the campaign to test
* @param array $test_emails an array of email address to receive the test message
* @param string $send_type optional by default (null) both formats are sent - "html" or "text" send just that format
* @return boolean true on success
*/
function campaignSendTest($cid, $test_emails=array (
), $send_type=NULL) {
$params = array();
$params["cid"] = $cid;
$params["test_emails"] = $test_emails;
$params["send_type"] = $send_type;
return $this->callServer("campaignSendTest", $params);
}
/**
* Allows one to test their segmentation rules before creating a campaign using them
*
* @section Campaign Related
* @example mcapi_campaignSegmentTest.php
* @example xml-rpc_campaignSegmentTest.php
*
* @param string $list_id the list to test segmentation on - get lists using lists()
* @param array $options with 2 keys:
string "match" controls whether to use AND or OR when applying your options - expects "<strong>any</strong>" (for OR) or "<strong>all</strong>" (for AND)
array "conditions" - up to 10 different criteria to apply while segmenting. Each criteria row must contain 3 keys - "<strong>field</strong>", "<strong>op</strong>", and "<strong>value</strong>" - and possibly a fourth, "<strong>extra</strong>", based on these definitions:
Field = "<strong>date</strong>" : Select based on signup date
Valid Op(eration): <strong>eq</strong> (is) / <strong>gt</strong> (after) / <strong>lt</strong> (before)
Valid Values:
string last_campaign_sent uses the date of the last campaign sent
string campaign_id uses the send date of the campaign that carriers the Id submitted - see campaigns()
string YYYY-MM-DD any date in the form of YYYY-MM-DD - <em>note:</em> anything that appears to start with YYYY will be treated as a date
Field = "<strong>last_changed</strong>" : Select based on subscriber record last changed date
Valid Op(eration): <strong>eq</strong> (is) / <strong>gt</strong> (after) / <strong>lt</strong> (before)
Valid Values:
string last_campaign_sent uses the date of the last campaign sent
string campaign_id uses the send date of the campaign that carriers the Id submitted - see campaigns()
string YYYY-MM-DD any date in the form of YYYY-MM-DD - <em>note:</em> anything that appears to start with YYYY will be treated as a date
Field = "<strong>interests-X</strong>": where X is the Grouping Id from listInterestGroupings()
Valid Op(erations): <strong>one</strong> / <strong>none</strong> / <strong>all</strong>
Valid Values: a comma delimited string of interest groups for the list, just like you'd use in listSubscribe() - see listInterestGroupings()
Field = "<strong>mc_language</strong>": Select subscribers based on their set/auto-detected language
Valid Op(eration): <strong>eq</strong> (=) / <strong>ne</strong> (!=)
Valid Values: a case sensitive language code from <a href="http://kb.mailchimp.com/article/can-i-see-what-languages-my-subscribers-use#code" target="_new">here</a>.
Field = "<strong>aim</strong>"
Valid Op(erations): <strong>open</strong> / <strong>noopen</strong> / <strong>click</strong> / <strong>noclick</strong>
Valid Values: "<strong>any</strong>" or a valid AIM-enabled Campaign that has been sent
Field = "<strong>rating</strong>" : allows matching based on list member ratings
Valid Op(erations): <strong>eq</strong> (=) / <strong>ne</strong> (!=) / <strong>gt</strong> (&gt;) / <strong>lt</strong> (&lt;)
Valid Values: a number between 0 and 5
Field = "<strong>ecomm_prod</strong>" or "<strong>ecomm_prod</strong>": allows matching product and category names from purchases
Valid Op(erations):
<strong>eq</strong> (=) / <strong>ne</strong> (!=) / <strong>gt</strong> (&gt;) / <strong>lt</strong> (&lt;) / <strong>like</strong> (like '%blah%') / <strong>nlike</strong> (not like '%blah%') / <strong>starts</strong> (like 'blah%') / <strong>ends</strong> (like '%blah')
Valid Values: any string
Field = "<strong>ecomm_spent_one</strong>" or "<strong>ecomm_spent_all</strong>" : allows matching purchase amounts on a single order or all orders
Valid Op(erations): <strong>gt</strong> (&gt;) / <strong>lt</strong> (&lt;)
Valid Values: a number
Field = "<strong>ecomm_date</strong>" : allow matching based on order dates
Valid Op(eration): <strong>eq</strong> (is) / <strong>gt</strong> (after) / <strong>lt</strong> (before)
Valid Values:
string last_campaign_sent uses the date of the last campaign sent
string campaign_id uses the send date of the campaign that carriers the Id submitted - see campaigns()
string YYYY-MM-DD any date in the form of YYYY-MM-DD - <em>note:</em> anything that appears to start with YYYY will be treated as a date
Field = "<strong>social_gender</strong>" : allows matching against the gender acquired from SocialPro
Valid Op(eration): <strong>eq</strong> (is) / <strong>ne</strong> (is not)
Valid Values: male, female
Field = "<strong>social_age</strong>" : allows matching against the age acquired from SocialPro
Valid Op(erations): <strong>eq</strong> (=) / <strong>ne</strong> (!=) / <strong>gt</strong> (&gt;) / <strong>lt</strong> (&lt;)
Valid Values: any number
Field = "<strong>social_influence</strong>" : allows matching against the influence acquired from SocialPro
Valid Op(erations): <strong>eq</strong> (=) / <strong>ne</strong> (!=) / <strong>gt</strong> (&gt;) / <strong>lt</strong> (&lt;)
Valid Values: a number between 0 and 5
Field = "<strong>social_network</strong>" :
Valid Op(erations): <strong>member</strong> (is a member of) / <strong>notmember</strong> (is not a member of)
Valid Values: twitter, facebook, myspace, linkedin, flickr
Field = "<strong>static_segment</strong>" :
Valid Op(erations): <strong>eq</strong> (is in) / <strong>ne</strong> (is not in)
Valid Values: an int get from listStaticSegments()
Field = "<strong>default_location</strong>" : the location we automatically assign to a subscriber based on where we've seen their activity originate
Valid Op(erations): <strong>ipgeostate</strong> (within a US state) / <strong>ipgeonotstate</strong> (not within a US state) / <strong>ipgeocountry</strong> (within a country) / <strong>ipgeonotcountry</strong> (not within a country) / <strong>ipgeoin</strong> (within lat/lng parameters) / <strong>ipgeonotin</strong> (not within lat/lng parameters)
Valid Values:
string ipgeostate/ipgeonotstate a full US state name (not case sensitive)
string ipgeocountry/ipgeonotcountry an ISO3166 2 digit country code (not case sensitive)
int ipgeoin/ipgeonotin a distance in miles centered around a point you must specify by also passing <strong>lat</strong> (latitude) and <strong>lng</strong> (longitude) parameters
Field = A <strong>Birthday</strong> type Merge Var. Use <strong>Merge0-Merge30</strong> or the <strong>Custom Tag</strong> you've setup for your merge field - see listMergeVars(). Note, Brithday fields can <strong>only</strong> use the operations listed here.
Valid Op(erations): <strong>eq</strong> (=) / <strong>starts</strong> (month equals) / <strong>ends</strong> (day equals)
Valid Values: Any valid number for the operation being checked.
Field = A <strong>Zip</strong> type Merge Var. Use <strong>Merge0-Merge30</strong> or the <strong>Custom Tag</strong> you've setup for your merge field - see listMergeVars(). Note, Zip fields can <strong>only</strong> use the operations listed here.
Valid Op(erations): <strong>eq</strong> (=) / <strong>ne</strong> (!=) / <strong>geoin</strong> (US only)
Valid Values: For <strong>eq</strong> (=) / <strong>ne</strong>, a Zip Code. For <strong>geoin</strong>, a radius in miles
Extra Value: Only for <strong>geoin</strong> - the Zip Code to be used as the center point
Field = An <strong>Address</strong> type Merge Var. Use <strong>Merge0-Merge30</strong> or the <strong>Custom Tag</strong> you've setup for your merge field - see listMergeVars(). Note, Address fields can <strong>only</strong> use the operations listed here.
Valid Op(erations): <strong>like</strong> (like '%blah%') / <strong>nlike</strong> (not like '%blah%') / <strong>geoin</strong>
Valid Values: For <strong>like</strong> and <strong>nlike</strong>, a string. For <strong>geoin</strong>, a radius in miles
Extra Value: Only for <strong>geoin</strong> - the Zip Code to be used as the center point
Field = A <strong>Number</strong> type Merge Var. Use <strong>Merge0-Merge30</strong> or the <strong>Custom Tag</strong> you've setup for your merge field - see listMergeVars(). Note, Number fields can <strong>only</strong> use the operations listed here.
Valid Op(erations): <strong>eq</strong> (=) / <strong>ne</strong> (!=) / <strong>gt</strong> (>) / <strong>lt</strong> (<) /
Valid Values: Any valid number.
Default Field = A Merge Var. Use <strong>Merge0-Merge30</strong> or the <strong>Custom Tag</strong> you've setup for your merge field - see listMergeVars()
Valid Op(erations):
<strong>eq</strong> (=) / <strong>ne</strong> (!=) / <strong>gt</strong> (&gt;) / <strong>lt</strong> (&lt;) / <strong>like</strong> (like '%blah%') / <strong>nlike</strong> (not like '%blah%') / <strong>starts</strong> (like 'blah%') / <strong>ends</strong> (like '%blah')
Valid Values: any string
* @return int total The total number of subscribers matching your segmentation options
*/
function campaignSegmentTest($list_id, $options) {
$params = array();
$params["list_id"] = $list_id;
$params["options"] = $options;
return $this->callServer("campaignSegmentTest", $params);
}
/**
* Create a new draft campaign to send. You <strong>can not</strong> have more than 32,000 campaigns in your account.
*
* @section Campaign Related
* @example mcapi_campaignCreate.php
* @example xml-rpc_campaignCreate.php
* @example xml-rpc_campaignCreateABSplit.php
* @example xml-rpc_campaignCreateRss.php
*
* @param string $type the Campaign Type to create - one of "regular", "plaintext", "absplit", "rss", "auto"
* @param array $options a hash of the standard options for this campaign :
string list_id the list to send this campaign to- get lists using lists()
string subject the subject line for your campaign message
string from_email the From: email address for your campaign message
string from_name the From: name for your campaign message (not an email address)
string to_name the To: name recipients will see (not email address)
int template_id optional - use this user-created template to generate the HTML content of the campaign (takes precendence over other template options)
int gallery_template_id optional - use a template from the public gallery to generate the HTML content of the campaign (takes precendence over base template options)
int base_template_id optional - use this a base/start-from-scratch template to generate the HTML content of the campaign
int folder_id optional - automatically file the new campaign in the folder_id passed. Get using folders() - note that Campaigns and Autoresponders have separate folder setupsn
array tracking optional - set which recipient actions will be tracked, as a struct of boolean values with the following keys: "opens", "html_clicks", and "text_clicks". By default, opens and HTML clicks will be tracked. Click tracking can not be disabled for Free accounts.
string title optional - an internal name to use for this campaign. By default, the campaign subject will be used.
boolean authenticate optional - set to true to enable SenderID, DomainKeys, and DKIM authentication, defaults to false.
array analytics optional - if provided, use a struct with "service type" as a key and the "service tag" as a value. Use "google" for Google Analytics, "clicktale" for ClickTale, and "gooal" for Goo.al tracking. The "tag" is any custom text (up to 50 characters) that should be included.
boolean auto_footer optional Whether or not we should auto-generate the footer for your content. Mostly useful for content from URLs or Imports
boolean inline_css optional Whether or not css should be automatically inlined when this campaign is sent, defaults to false.
boolean generate_text optional Whether of not to auto-generate your Text content from the HTML content. Note that this will be ignored if the Text part of the content passed is not empty, defaults to false.
boolean auto_tweet optional If set, this campaign will be auto-tweeted when it is sent - defaults to false. Note that if a Twitter account isn't linked, this will be silently ignored.
array auto_fb_post optional If set, this campaign will be auto-posted to the page_ids contained in the array. If a Facebook account isn't linked or the account does not have permission to post to the page_ids requested, those failures will be silently ignored.
boolean fb_comments optional If true, the Facebook comments (and thus the <a href="http://kb.mailchimp.com/article/i-dont-want-an-archiave-of-my-campaign-can-i-turn-it-off/" target="_blank">archive bar</a> will be displayed. If false, Facebook comments will not be enabled (does not imply no archive bar, see previous link). Defaults to "true".
boolean timewarp optional If set, this campaign must be scheduled 24 hours in advance of sending - default to false. Only valid for "regular" campaigns and "absplit" campaigns that split on schedule_time.
boolean ecomm360 optional If set, our <a href="http://www.mailchimp.com/blog/ecommerce-tracking-plugin/" target="_blank">Ecommerce360 tracking</a> will be enabled for links in the campaign
array crm_tracking optional If set, enable CRM tracking for:<div style="padding-left:15px"><table>
array salesforce optional Enable SalesForce push back<div style="padding-left:15px"><table>
bool campaign optional - if true, create a Campaign object and update it with aggregate stats
bool notes optional - if true, attempt to update Contact notes based on email address</table></div>
array highrise optional Enable Highrise push back<div style="padding-left:15px"><table>
bool campaign optional - if true, create a Kase object and update it with aggregate stats
bool notes optional - if true, attempt to update Contact notes based on email address</table></div>
array capsule optional Enable Capsule push back (only notes are supported)<div style="padding-left:15px"><table>
bool notes optional - if true, attempt to update Contact notes based on email address</table></div></table></div>
* @param array $content the content for this campaign - use a struct with the following keys:
string html for pasted HTML content
string text for the plain-text version
string url to have us pull in content from a URL. Note, this will override any other content options - for lists with Email Format options, you'll need to turn on generate_text as well
string archive to send a Base64 encoded archive file for us to import all media from. Note, this will override any other content options - for lists with Email Format options, you'll need to turn on generate_text as well
string archive_type optional - only necessary for the "archive" option. Supported formats are: zip, tar.gz, tar.bz2, tar, tgz, tbz . If not included, we will default to zip
If you chose a template instead of pasting in your HTML content, then use "html_" followed by the template sections as keys - for example, use a key of "html_MAIN" to fill in the "MAIN" section of a template.
* @param array $segment_opts optional - if you wish to do Segmentation with this campaign this array should contain: see campaignSegmentTest(). It's suggested that you test your options against campaignSegmentTest().
* @param array $type_opts optional -
For RSS Campaigns this, array should contain:
string url the URL to pull RSS content from - it will be verified and must exist
string schedule optional one of "daily", "weekly", "monthly" - defaults to "daily"
string schedule_hour optional an hour between 0 and 24 - default to 4 (4am <em>local time</em>) - applies to all schedule types
string schedule_weekday optional for "weekly" only, a number specifying the day of the week to send: 0 (Sunday) - 6 (Saturday) - defaults to 1 (Monday)
string schedule_monthday optional for "monthly" only, a number specifying the day of the month to send (1 - 28) or "last" for the last day of a given month. Defaults to the 1st day of the month
array days optional used for "daily" schedules only, an array of the <a href="http://en.wikipedia.org/wiki/ISO-8601#Week_dates" target="_blank">ISO-8601 weekday numbers</a> to send on<div style="padding-left:15px"><table>
bool 1 optional Monday, defaults to true
bool 2 optional Tuesday, defaults to true
bool 3 optional Wednesday, defaults to true
bool 4 optional Thursday, defaults to true
bool 5 optional Friday, defaults to true
bool 6 optional Saturday, defaults to true
bool 7 optional Sunday, defaults to true</table></div>
For A/B Split campaigns, this array should contain:
string split_test The values to segment based on. Currently, one of: "subject", "from_name", "schedule". NOTE, for "schedule", you will need to call campaignSchedule() separately!
string pick_winner How the winner will be picked, one of: "opens" (by the open_rate), "clicks" (by the click rate), "manual" (you pick manually)
int wait_units optional the default time unit to wait before auto-selecting a winner - use "3600" for hours, "86400" for days. Defaults to 86400.
int wait_time optional the number of units to wait before auto-selecting a winner - defaults to 1, so if not set, a winner will be selected after 1 Day.
int split_size optional this is a percentage of what size the Campaign's List plus any segmentation options results in. "schedule" type forces 50%, all others default to 10%
string from_name_a optional sort of, required when split_test is "from_name"
string from_name_b optional sort of, required when split_test is "from_name"
string from_email_a optional sort of, required when split_test is "from_name"
string from_email_b optional sort of, required when split_test is "from_name"
string subject_a optional sort of, required when split_test is "subject"
string subject_b optional sort of, required when split_test is "subject"
For AutoResponder campaigns, this array should contain:
string offset-units one of "hourly", "day", "week", "month", "year" - required
string offset-time optional, sort of - the number of units must be a number greater than 0 for signup based autoresponders, ignored for "hourly"
string offset-dir either "before" or "after", ignored for "hourly"
string event optional "signup" (default) to base this members added to a list, "date", "annual", or "birthday" to base this on merge field in the list, "campaignOpen" or "campaignClicka" to base this on any activity for a campaign, "campaignClicko" to base this on clicks on a specific URL in a campaign, "mergeChanged" to base this on a specific merge field being changed to a specific value
string event-datemerge optional sort of, this is required if the event is "date", "annual", "birthday", or "mergeChanged"
string campaign_id optional sort of, required for "campaignOpen", "campaignClicka", or "campaignClicko"
string campaign_url optional sort of, required for "campaignClicko"
int schedule_hour The hour of the day - 24 hour format in GMT - the autoresponder should be triggered, ignored for "hourly"
boolean use_import_time whether or not imported subscribers (ie, <em>any</em> non-double optin subscribers) will receive
array days optional used for "daily" schedules only, an array of the <a href="http://en.wikipedia.org/wiki/ISO-8601#Week_dates" target="_blank">ISO-8601 weekday numbers</a> to send on<div style="padding-left:15px"><table>
bool 1 optional Monday, defaults to true
bool 2 optional Tuesday, defaults to true
bool 3 optional Wednesday, defaults to true
bool 4 optional Thursday, defaults to true
bool 5 optional Friday, defaults to true
bool 6 optional Saturday, defaults to true
bool 7 optional Sunday, defaults to true</table></div>
*
* @return string the ID for the created campaign
*/
function campaignCreate($type, $options, $content, $segment_opts=NULL, $type_opts=NULL) {
$params = array();
$params["type"] = $type;
$params["options"] = $options;
$params["content"] = $content;
$params["segment_opts"] = $segment_opts;
$params["type_opts"] = $type_opts;
return $this->callServer("campaignCreate", $params);
}
/** Update just about any setting for a campaign that has <em>not</em> been sent. See campaignCreate() for details.
*
*
* Caveats:<br/><ul class='simplelist square'>
* <li>If you set list_id, all segmentation options will be deleted and must be re-added.</li>
* <li>If you set template_id, you need to follow that up by setting it's 'content'</li>
* <li>If you set segment_opts, you should have tested your options against campaignSegmentTest() as campaignUpdate() will not allow you to set a segment that includes no members.</li>
* <li>To clear/unset segment_opts, pass an empty string or array as the value. Various wrappers may require one or the other.</li>
* </ul>
* @section Campaign Related
*
* @example mcapi_campaignUpdate.php
* @example mcapi_campaignUpdateAB.php
* @example xml-rpc_campaignUpdate.php
* @example xml-rpc_campaignUpdateAB.php
*
* @param string $cid the Campaign Id to update
* @param string $name the parameter name ( see campaignCreate() ). For items in the <strong>options</strong> array, this will be that parameter's name (subject, from_email, etc.). Additional parameters will be that option name (content, segment_opts). "type_opts" will be the name of the type - rss, auto, etc.
* @param mixed $value an appropriate value for the parameter ( see campaignCreate() ). For items in the <strong>options</strong> array, this will be that parameter's value. For additional parameters, this is the same value passed to them.
* @return boolean true if the update succeeds, otherwise an error will be thrown
*/
function campaignUpdate($cid, $name, $value) {
$params = array();
$params["cid"] = $cid;
$params["name"] = $name;
$params["value"] = $value;
return $this->callServer("campaignUpdate", $params);
}
/** Replicate a campaign.
*
* @section Campaign Related
*
* @example mcapi_campaignReplicate.php
*
* @param string $cid the Campaign Id to replicate
* @return string the id of the replicated Campaign created, otherwise an error will be thrown
*/
function campaignReplicate($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignReplicate", $params);
}
/** Delete a campaign. Seriously, "poof, gone!" - be careful!
*
* @section Campaign Related
*
* @example mcapi_campaignDelete.php
*
* @param string $cid the Campaign Id to delete
* @return boolean true if the delete succeeds, otherwise an error will be thrown
*/
function campaignDelete($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignDelete", $params);
}
/**
* Get the list of campaigns and their details matching the specified filters
*
* @section Campaign Related
* @example mcapi_campaigns.php
* @example xml-rpc_campaigns.php
*
* @param array $filters a hash of filters to apply to this query - all are optional:
string campaign_id optional - return the campaign using a know campaign_id. Accepts multiples separated by commas when not using exact matching.
string parent_id optional - return the child campaigns using a known parent campaign_id. Accepts multiples separated by commas when not using exact matching.
string list_id optional - the list to send this campaign to - get lists using lists(). Accepts multiples separated by commas when not using exact matching.
int folder_id optional - only show campaigns from this folder id - get folders using campaignFolders(). Accepts multiples separated by commas when not using exact matching.
int template_id optional - only show campaigns using this template id - get templates using templates(). Accepts multiples separated by commas when not using exact matching.
string status optional - return campaigns of a specific status - one of "sent", "save", "paused", "schedule", "sending". Accepts multiples separated by commas when not using exact matching.
string type optional - return campaigns of a specific type - one of "regular", "plaintext", "absplit", "rss", "auto". Accepts multiples separated by commas when not using exact matching.
string from_name optional - only show campaigns that have this "From Name"
string from_email optional - only show campaigns that have this "Reply-to Email"
string title optional - only show campaigns that have this title
string subject optional - only show campaigns that have this subject
string sendtime_start optional - only show campaigns that have been sent since this date/time (in GMT) - - 24 hour format in <strong>GMT</strong>, eg "2013-12-30 20:30:00"
string sendtime_end optional - only show campaigns that have been sent before this date/time (in GMT) - - 24 hour format in <strong>GMT</strong>, eg "2013-12-30 20:30:00"
boolean uses_segment - whether to return just campaigns with or without segments
boolean exact optional - flag for whether to filter on exact values when filtering, or search within content for filter values - defaults to true. Using this disables the use of any filters that accept multiples.
* @param int $start optional - control paging of campaigns, start results at this campaign #, defaults to 1st page of data (page 0)
* @param int $limit optional - control paging of campaigns, number of campaigns to return with each call, defaults to 25 (max=1000)
* @param string sort_field optional - one of "create_time", "send_time", "title", "subject" . Invalid values will fall back on "create_time" - case insensitive.
* @param string sort_dir optional - "DESC" for descending (default), "ASC" for Ascending. Invalid values will fall back on "DESC" - case insensitive.
* @return array an array containing a count of all matching campaigns and the specific ones for the current page (see Returned Fields for description)
int total the total number of campaigns matching the filters passed in
array data the data for each campaign being returned
string id Campaign Id (used for all other campaign functions)
int web_id The Campaign id used in our web app, allows you to create a link directly to it
string list_id The List used for this campaign
int folder_id The Folder this campaign is in
int template_id The Template this campaign uses
string content_type How the campaign's content is put together - one of 'template', 'html', 'url'
string title Title of the campaign
string type The type of campaign this is (regular,plaintext,absplit,rss,inspection,auto)
string create_time Creation time for the campaign
string send_time Send time for the campaign - also the scheduled time for scheduled campaigns.
int emails_sent Number of emails email was sent to
string status Status of the given campaign (save,paused,schedule,sending,sent)
string from_name From name of the given campaign
string from_email Reply-to email of the given campaign
string subject Subject of the given campaign
string to_name Custom "To:" email string using merge variables
string archive_url Archive link for the given campaign
boolean inline_css Whether or not the campaign content's css was auto-inlined
string analytics Either "google" if enabled or "N" if disabled
string analytics_tag The name/tag the campaign's links were tagged with if analytics were enabled.
boolean authenticate Whether or not the campaign was authenticated
boolean ecomm360 Whether or not ecomm360 tracking was appended to links
boolean auto_tweet Whether or not the campaign was auto tweeted after sending
string auto_fb_post A comma delimited list of Facebook Profile/Page Ids the campaign was posted to after sending. If not used, blank.
boolean auto_footer Whether or not the auto_footer was manually turned on
boolean timewarp Whether or not the campaign used Timewarp
string timewarp_schedule The time, in GMT, that the Timewarp campaign is being sent. For A/B Split campaigns, this is blank and is instead in their schedule_a and schedule_b in the type_opts array
string parent_id the unique id of the parent campaign (currently only valid for rss children)
array tracking the various tracking options used
boolean html_clicks whether or not tracking for html clicks was enabled.
boolean text_clicks whether or not tracking for text clicks was enabled.
boolean opens whether or not opens tracking was enabled.
string segment_text a string marked-up with HTML explaining the segment used for the campaign in plain English
array segment_opts the segment used for the campaign - can be passed to campaignSegmentTest() or campaignCreate()
array type_opts the type-specific options for the campaign - can be passed to campaignCreate()
*/
function campaigns($filters=array (
), $start=0, $limit=25, $sort_field='create_time', $sort_dir='DESC') {
$params = array();
$params["filters"] = $filters;
$params["start"] = $start;
$params["limit"] = $limit;
$params["sort_field"] = $sort_field;
$params["sort_dir"] = $sort_dir;
return $this->callServer("campaigns", $params);
}
/**
* Given a list and a campaign, get all the relevant campaign statistics (opens, bounces, clicks, etc.)
*
* @section Campaign Stats
*
* @example mcapi_campaignStats.php
* @example xml-rpc_campaignStats.php
*
* @param string $cid the campaign id to pull stats for (can be gathered using campaigns())
* @return array struct of the statistics for this campaign
int syntax_errors Number of email addresses in campaign that had syntactical errors.
int hard_bounces Number of email addresses in campaign that hard bounced.
int soft_bounces Number of email addresses in campaign that soft bounced.
int unsubscribes Number of email addresses in campaign that unsubscribed.
int abuse_reports Number of email addresses in campaign that reported campaign for abuse.
int forwards Number of times email was forwarded to a friend.
int forwards_opens Number of times a forwarded email was opened.
int opens Number of times the campaign was opened.
string last_open Date of the last time the email was opened.
int unique_opens Number of people who opened the campaign.
int clicks Number of times a link in the campaign was clicked.
int unique_clicks Number of unique recipient/click pairs for the campaign.
string last_click Date of the last time a link in the email was clicked.
int users_who_clicked Number of unique recipients who clicked on a link in the campaign.
int emails_sent Number of email addresses campaign was sent to.
int unique_likes total number of unique likes (Facebook)
int recipient_likes total number of recipients who liked (Facebook) the campaign
int facebook_likes total number of likes (Facebook) that came from Facebook
array absplit If this was an absplit campaign, stats for the A and B groups will be returned
int bounces_a bounces for the A group
int bounces_b bounces for the B group
int forwards_a forwards for the A group
int forwards_b forwards for the B group
int abuse_reports_a abuse reports for the A group
int abuse_reports_b abuse reports for the B group
int unsubs_a unsubs for the A group
int unsubs_b unsubs for the B group
int recipients_click_a clicks for the A group
int recipients_click_b clicks for the B group
int forwards_opens_a opened forwards for the A group
int forwards_opens_b opened forwards for the B group
int opens_a total opens for the A group
int opens_b total opens for the B group
string last_open_a date/time of last open for the A group
string last_open_b date/time of last open for the BG group
int unique_opens_a unique opens for the A group
int unique_opens_b unique opens for the B group
array timewarp If this campaign was a Timewarp campaign, an array of stats from each timezone for it, with the GMT offset as they key. Each timezone will contain:
int opens opens for this timezone
string last_open the date/time of the last open for this timezone
int unique_opens the unique opens for this timezone
int clicks the total clicks for this timezone
string last_click the date/time of the last click for this timezone
int unique_opens the unique clicks for this timezone
int bounces the total bounces for this timezone
int total the total number of members sent to in this timezone
int sent the total number of members delivered to in this timezone
array timeseries For the first 24 hours of the campaign, per-hour stats:
string timestamp The timestemp in Y-m-d H:00:00 format
int emails_sent the total emails sent during the hour
int unique_opens unique opens seen during the hour
int recipients_click unique clicks seen during the hour
*/
function campaignStats($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignStats", $params);
}
/**
* Get an array of the urls being tracked, and their click counts for a given campaign
*
* @section Campaign Stats
*
* @example mcapi_campaignClickStats.php
* @example xml-rpc_campaignClickStats.php
*
* @param string $cid the campaign id to pull stats for (can be gathered using campaigns())
* @return array urls will be keys and contain their associated statistics:
int clicks Number of times the specific link was clicked
int unique Number of unique people who clicked on the specific link
*/
function campaignClickStats($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignClickStats", $params);
}
/**
* Get the top 5 performing email domains for this campaign. Users want more than 5 should use campaign campaignEmailStatsAIM()
* or campaignEmailStatsAIMAll() and generate any additional stats they require.
*
* @section Campaign Stats
*
* @example mcapi_campaignEmailDomainPerformance.php
*
* @param string $cid the campaign id to pull email domain performance for (can be gathered using campaigns())
* @return array domains email domains and their associated stats
string domain Domain name or special "Other" to roll-up stats past 5 domains
int total_sent Total Email across all domains - this will be the same in every row
int emails Number of emails sent to this domain
int bounces Number of bounces
int opens Number of opens
int clicks Number of clicks
int unsubs Number of unsubs
int delivered Number of deliveries
int emails_pct Percentage of emails that went to this domain (whole number)
int bounces_pct Percentage of bounces from this domain (whole number)
int opens_pct Percentage of opens from this domain (whole number)
int clicks_pct Percentage of clicks from this domain (whole number)
int unsubs_pct Percentage of unsubs from this domain (whole number)
*/
function campaignEmailDomainPerformance($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignEmailDomainPerformance", $params);
}
/**
* Get all email addresses the campaign was sent to
*
* @section Campaign Stats
*
* @param string $cid the campaign id to pull members for (can be gathered using campaigns())
* @param string $status optional the status to pull - one of 'sent', 'hard' (bounce), or 'soft' (bounce). By default, all records are returned
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 1000, upper limit set at 15000
* @return array a total of all matching emails and the specific emails for this page
int total the total number of members for the campaign and status
array data the full campaign member records
string email the email address sent to
string status the status of the send - one of 'sent', 'hard', 'soft'
string absplit_group if this was an absplit campaign, one of 'a','b', or 'winner'
string tz_group if this was an timewarp campaign the timezone GMT offset the member was included in
*/
function campaignMembers($cid, $status=NULL, $start=0, $limit=1000) {
$params = array();
$params["cid"] = $cid;
$params["status"] = $status;
$params["start"] = $start;
$params["limit"] = $limit;
return $this->callServer("campaignMembers", $params);
}
/**
* <strong>DEPRECATED</strong> Get all email addresses with Hard Bounces for a given campaign
*
* @deprecated See campaignMembers() for a replacement
*
* @section Campaign Stats
*
* @param string $cid the campaign id to pull bounces for (can be gathered using campaigns())
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 1000, upper limit set at 15000
* @return array a total of all hard bounced emails and the specific emails for this page
int total the total number of hard bounces for the campaign
array data array of the full email addresses that bounced
*/
function campaignHardBounces($cid, $start=0, $limit=1000) {
$params = array();
$params["cid"] = $cid;
$params["start"] = $start;
$params["limit"] = $limit;
return $this->callServer("campaignHardBounces", $params);
}
/**
* <strong>DEPRECATED</strong> Get all email addresses with Soft Bounces for a given campaign
*
* @deprecated See campaignMembers() for a replacement
*
* @section Campaign Stats
*
* @param string $cid the campaign id to pull bounces for (can be gathered using campaigns())
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 1000, upper limit set at 15000
* @return array a total of all soft bounced emails and the specific emails for this page
int total the total number of soft bounces for the campaign
array data array of the full email addresses that bounced
*/
function campaignSoftBounces($cid, $start=0, $limit=1000) {
$params = array();
$params["cid"] = $cid;
$params["start"] = $start;
$params["limit"] = $limit;
return $this->callServer("campaignSoftBounces", $params);
}
/**
* Get all unsubscribed email addresses for a given campaign
*
* @section Campaign Stats
*
* @param string $cid the campaign id to pull bounces for (can be gathered using campaigns())
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 1000, upper limit set at 15000
* @return array a total of all unsubscribed emails and the specific emails for this page
int total the total number of unsubscribes for the campaign
array data the full email addresses that unsubscribed
string email the email address that unsubscribed
string reason For unsubscribes only - the reason collected for the unsubscribe. If populated, one of 'NORMAL','NOSIGNUP','INAPPROPRIATE','SPAM','OTHER'
string reason_text For unsubscribes only - if the reason is OTHER, the text entered.
*/
function campaignUnsubscribes($cid, $start=0, $limit=1000) {
$params = array();
$params["cid"] = $cid;
$params["start"] = $start;
$params["limit"] = $limit;
return $this->callServer("campaignUnsubscribes", $params);
}
/**
* Get all email addresses that complained about a given campaign
*
* @section Campaign Stats
*
* @example mcapi_campaignAbuseReports.php
*
* @param string $cid the campaign id to pull abuse reports for (can be gathered using campaigns())
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 500, upper limit set at 1000
* @param string $since optional pull only messages since this time - 24 hour format in <strong>GMT</strong>, eg "2013-12-30 20:30:00"
* @return array reports the abuse reports for this campaign
int total the total reports matched
array data the report data for each, including:
string date date/time the abuse report was received and processed
string email the email address that reported abuse
string type an internal type generally specifying the orginating mail provider - may not be useful outside of filling report views
*/
function campaignAbuseReports($cid, $since=NULL, $start=0, $limit=500) {
$params = array();
$params["cid"] = $cid;
$params["since"] = $since;
$params["start"] = $start;
$params["limit"] = $limit;
return $this->callServer("campaignAbuseReports", $params);
}
/**
* Retrieve the text presented in our app for how a campaign performed and any advice we may have for you - best
* suited for display in customized reports pages. Note: some messages will contain HTML - clean tags as necessary
*
* @section Campaign Stats
*
* @example mcapi_campaignAdvice.php
*
* @param string $cid the campaign id to pull advice text for (can be gathered using campaigns())
* @return array advice on the campaign's performance, each containing:
msg the advice message
type the "type" of the message. one of: negative, positive, or neutral
*/
function campaignAdvice($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignAdvice", $params);
}
/**
* Retrieve the Google Analytics data we've collected for this campaign. Note, requires Google Analytics Add-on to be installed and configured.
*
* @section Campaign Stats
*
* @example mcapi_campaignAnalytics.php
*
* @param string $cid the campaign id to pull bounces for (can be gathered using campaigns())
* @return array analytics we've collected for the passed campaign.
int visits number of visits
int pages number of page views
int new_visits new visits recorded
int bounces vistors who "bounced" from your site
double time_on_site the total time visitors spent on your sites
int goal_conversions number of goals converted
double goal_value value of conversion in dollars
double revenue revenue generated by campaign
int transactions number of transactions tracked
int ecomm_conversions number Ecommerce transactions tracked
array goals an array containing goal names and number of conversions
string name the name of the goal
int conversions the number of conversions for the goal
*/
function campaignAnalytics($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignAnalytics", $params);
}
/**
* Retrieve the countries and number of opens tracked for each. Email address are not returned.
*
* @section Campaign Stats
*
*
* @param string $cid the campaign id to pull bounces for (can be gathered using campaigns())
* @return array countries an array of countries where opens occurred
string code The ISO3166 2 digit country code
string name A version of the country name, if we have it
int opens The total number of opens that occurred in the country
boolean region_detail Whether or not a subsequent call to campaignGeoOpensByCountry() will return anything
*/
function campaignGeoOpens($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignGeoOpens", $params);
}
/**
* Retrieve the regions and number of opens tracked for a certain country. Email address are not returned.
*
* @section Campaign Stats
*
*
* @param string $cid the campaign id to pull bounces for (can be gathered using campaigns())
* @param string $code An ISO3166 2 digit country code
* @return array regions an array of regions within the provided country where opens occurred.
string code An internal code for the region. When this is blank, it indicates we know the country, but not the region
string name The name of the region, if we have one. For blank "code" values, this will be "Rest of Country"
int opens The total number of opens that occurred in the country
*/
function campaignGeoOpensForCountry($cid, $code) {
$params = array();
$params["cid"] = $cid;
$params["code"] = $code;
return $this->callServer("campaignGeoOpensForCountry", $params);
}
/**
* Retrieve the tracked eepurl mentions on Twitter
*
* @section Campaign Stats
*
*
* @param string $cid the campaign id to pull bounces for (can be gathered using campaigns())
* @return array stats an array containing tweets, retweets, clicks, and referrer related to using the campaign's eepurl
array twitter various Twitter related stats
int tweets Total number of tweets seen
string first_tweet date and time of the first tweet seen
string last_tweet date and time of the last tweet seen
int retweets Total number of retweets seen
string first_retweet date and time of the first retweet seen
string last_retweet date and time of the last retweet seen
array statuses an array of statuses recorded inclduing:
string status the text of the tweet/update
string screen_name the screen name as recorded when first seen
string status_id the status id of the tweet (they are really unsigned 64 bit ints)
string datetime the date/time of the tweet
bool is_retweet whether or not this was a retweet
array clicks stats related to click-throughs on the eepurl
int clicks Total number of clicks seen
string first_click date and time of the first click seen
string last_click date and time of the first click seen
array locations an array of geographic locations including:
string country the country name the click was tracked to
string region the region in the country the click was tracked to (if available)
int total clicks total clicks occuring in this country+region pair
array referrers an array of arrays, each containing
string referrer the referrer, truncated to 100 bytes
int clicks Total number of clicks seen from this referrer
string first_click date and time of the first click seen from this referrer
string last_click date and time of the first click seen from this referrer
*/
function campaignEepUrlStats($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignEepUrlStats", $params);
}
/**
* Retrieve the most recent full bounce message for a specific email address on the given campaign.
* Messages over 30 days old are subject to being removed
*
*
* @section Campaign Stats
*
* @param string $cid the campaign id to pull bounces for (can be gathered using campaigns())
* @param string $email the email address or unique id of the member to pull a bounce message for.
* @return array the full bounce message for this email+campaign along with some extra data.
string date date/time the bounce was received and processed
string email the email address that bounced
string message the entire bounce message received
*/
function campaignBounceMessage($cid, $email) {
$params = array();
$params["cid"] = $cid;
$params["email"] = $email;
return $this->callServer("campaignBounceMessage", $params);
}
/**
* Retrieve the full bounce messages for the given campaign. Note that this can return very large amounts
* of data depending on how large the campaign was and how much cruft the bounce provider returned. Also,
* message over 30 days old are subject to being removed
*
* @section Campaign Stats
*
* @example mcapi_campaignBounceMessages.php
*
* @param string $cid the campaign id to pull bounces for (can be gathered using campaigns())
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 25, upper limit set at 50
* @param string $since optional pull only messages since this time - use YYYY-MM-DD format in <strong>GMT</strong> (we only store the date, not the time)
* @return array bounces the full bounce messages for this campaign
int total that total number of bounce messages for the campaign
array data an array containing the data for this page
string date date/time the bounce was received and processed
string email the email address that bounced
string message the entire bounce message received
*/
function campaignBounceMessages($cid, $start=0, $limit=25, $since=NULL) {
$params = array();
$params["cid"] = $cid;
$params["start"] = $start;
$params["limit"] = $limit;
$params["since"] = $since;
return $this->callServer("campaignBounceMessages", $params);
}
/**
* Retrieve the Ecommerce Orders tracked by campaignEcommOrderAdd()
*
* @section Campaign Stats
*
* @param string $cid the campaign id to pull bounces for (can be gathered using campaigns())
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 100, upper limit set at 500
* @param string $since optional pull only messages since this time - 24 hour format in <strong>GMT</strong>, eg "2013-12-30 20:30:00"
* @return array the total matching orders and the specific orders for the requested page
int total the total matching orders
array data the actual data for each order being returned
string store_id the store id generated by the plugin used to uniquely identify a store
string store_name the store name collected by the plugin - often the domain name
string order_id the internal order id the store tracked this order by
string email the email address that received this campaign and is associated with this order
double order_total the order total
double tax_total the total tax for the order (if collected)
double ship_total the shipping total for the order (if collected)
string order_date the date the order was tracked - from the store if possible, otherwise the GMT time we received it
array lines containing detail of the order:
int line_num the line number assigned to this line
int product_id the product id assigned to this item
string product_name the product name
string product_sku the sku for the product
int product_category_id the id for the product category
string product_category_name the product category name
double qty optional the quantity of the item ordered - defaults to 1
double cost optional the cost of a single item (ie, not the extended cost of the line) - defaults to 0
*/
function campaignEcommOrders($cid, $start=0, $limit=100, $since=NULL) {
$params = array();
$params["cid"] = $cid;
$params["start"] = $start;
$params["limit"] = $limit;
$params["since"] = $since;
return $this->callServer("campaignEcommOrders", $params);
}
/**
* Get the URL to a customized <a href="http://eepurl.com/gKmL" target="_blank">VIP Report</a> for the specified campaign and optionally send an email to someone with links to it. Note subsequent calls will overwrite anything already set for the same campign (eg, the password)
*
* @section Campaign Related
*
* @param string $cid the campaign id to share a report for (can be gathered using campaigns())
* @param array $opts optional various parameters which can be used to configure the shared report
string to_email optional - optional, comma delimited list of email addresses to share the report with - no value means an email will not be sent
string company optional - a company name to be displayed (use of a theme may hide this) - max 255 bytes
int theme_id optional - either a global or a user-specific theme id. Currently this needs to be pulled out of either the Share Report or Cobranding web views by grabbing the "theme" attribute from the list presented.
string css_url optional - a link to an external CSS file to be included after our default CSS (http://vip-reports.net/css/vip.css) <strong>only if</strong> loaded via the "secure_url" - max 255 bytes
* @return array Array containing details for the shared report
string title The Title of the Campaign being shared
string url The URL to the shared report
string secure_url The URL to the shared report, including the password (good for loading in an IFRAME). For non-secure reports, this will not be returned
string password If secured, the password for the report, otherwise this field will not be returned
*/
function campaignShareReport($cid, $opts=array (
)) {
$params = array();
$params["cid"] = $cid;
$params["opts"] = $opts;
return $this->callServer("campaignShareReport", $params);
}
/**
* Get the content (both html and text) for a campaign either as it would appear in the campaign archive or as the raw, original content
*
* @section Campaign Related
*
* @param string $cid the campaign id to get content for (can be gathered using campaigns())
* @param bool $for_archive optional controls whether we return the Archive version (true) or the Raw version (false), defaults to true
* @return array Array containing all content for the campaign
string html The HTML content used for the campaign with merge tags intact
string text The Text content used for the campaign with merge tags intact
*/
function campaignContent($cid, $for_archive=true) {
$params = array();
$params["cid"] = $cid;
$params["for_archive"] = $for_archive;
return $this->callServer("campaignContent", $params);
}
/**
* Get the HTML template content sections for a campaign. Note that this <strong>will</strong> return very jagged, non-standard results based on the template
* a campaign is using. You only want to use this if you want to allow editing template sections in your applicaton.
*
* @section Campaign Related
*
* @param string $cid the campaign id to get content for (can be gathered using campaigns())
* @return array array containing all content section for the campaign - section name are dependent upon the template used and thus can't be documented
*/
function campaignTemplateContent($cid) {
$params = array();
$params["cid"] = $cid;
return $this->callServer("campaignTemplateContent", $params);
}
/**
* Retrieve the list of email addresses that opened a given campaign with how many times they opened
*
* @section Campaign Report Data
*
* @param string $cid the campaign id to get opens for (can be gathered using campaigns())
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 1000, upper limit set at 15000
* @return array array containing the total records matched and the specific records for this page
int total the total number of records matched
array data the actual opens data, including:
string email Email address that opened the campaign
int open_count Total number of times the campaign was opened by this email address
*/
function campaignOpenedAIM($cid, $start=0, $limit=1000) {
$params = array();
$params["cid"] = $cid;
$params["start"] = $start;
$params["limit"] = $limit;
return $this->callServer("campaignOpenedAIM", $params);
}
/**
* Retrieve the list of email addresses that did not open a given campaign
*
* @section Campaign Report Data
*
* @param string $cid the campaign id to get no opens for (can be gathered using campaigns())
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 1000, upper limit set at 15000
* @return array array containing the total records matched and the specific records for this page
int total the total number of records matched
array data the email addresses that did not open the campaign
*/
function campaignNotOpenedAIM($cid, $start=0, $limit=1000) {
$params = array();
$params["cid"] = $cid;
$params["start"] = $start;
$params["limit"] = $limit;
return $this->callServer("campaignNotOpenedAIM", $params);
}
/**
* Return the list of email addresses that clicked on a given url, and how many times they clicked
*
* @section Campaign Report Data
*
* @param string $cid the campaign id to get click stats for (can be gathered using campaigns())
* @param string $url the URL of the link that was clicked on
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 1000, upper limit set at 15000
* @return array array containing the total records matched and the specific records for this page
int total the total number of records matched
array data the email addresses that did not open the campaign
string email Email address that opened the campaign
int clicks Total number of times the URL was clicked on by this email address
*/
function campaignClickDetailAIM($cid, $url, $start=0, $limit=1000) {
$params = array();
$params["cid"] = $cid;
$params["url"] = $url;
$params["start"] = $start;
$params["limit"] = $limit;
return $this->callServer("campaignClickDetailAIM", $params);
}
/**
* Given a campaign and email address, return the entire click and open history with timestamps, ordered by time
*
* @section Campaign Report Data
*
* @param string $cid the campaign id to get stats for (can be gathered using campaigns())
* @param array $email_address an array of up to 50 email addresses to check OR the email "id" returned from listMemberInfo, Webhooks, and Campaigns. For backwards compatibility, if a string is passed, it will be treated as an array with a single element (will not work with XML-RPC).
* @return array an array with the keys listed in Returned Fields below
int success the number of email address records found
int error the number of email address records which could not be found
array data arrays containing the actions (opens and clicks) that the email took, with timestamps
string action The action taken (open or click)
string timestamp Time the action occurred
string url For clicks, the URL that was clicked
*/
function campaignEmailStatsAIM($cid, $email_address) {
$params = array();
$params["cid"] = $cid;
$params["email_address"] = $email_address;
return $this->callServer("campaignEmailStatsAIM", $params);
}
/**
* Given a campaign and correct paging limits, return the entire click and open history with timestamps, ordered by time,
* for every user a campaign was delivered to.
*
* @section Campaign Report Data
* @example mcapi_campaignEmailStatsAIMAll.php
*
* @param string $cid the campaign id to get stats for (can be gathered using campaigns())
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 100, upper limit set at 1000
* @return array Array containing a total record count and data including the actions (opens and clicks) for each email, with timestamps
int total the total number of records
array data each record keyed by email address containing arrays of actions including:
string action The action taken (open or click)
string timestamp Time the action occurred
string url For clicks, the URL that was clicked
*/
function campaignEmailStatsAIMAll($cid, $start=0, $limit=100) {
$params = array();
$params["cid"] = $cid;
$params["start"] = $start;
$params["limit"] = $limit;
return $this->callServer("campaignEmailStatsAIMAll", $params);
}
/**
* Attach Ecommerce Order Information to a Campaign. This will generally be used by ecommerce package plugins
* <a href="http://connect.mailchimp.com/category/ecommerce" target="_blank">provided by us or by 3rd part system developers</a>.
* @section Campaign Related
*
* @param array $order an array of information pertaining to the order that has completed. Use the following keys:
string id the Order Id
string campaign_id the Campaign Id to track this order with (see the "mc_cid" query string variable a campaign passes)
string email_id the Email Id of the subscriber we should attach this order to (see the "mc_eid" query string variable a campaign passes)
double total The Order Total (ie, the full amount the customer ends up paying)
string order_date optional the date of the order - if this is not provided, we will default the date to now
double shipping optional the total paid for Shipping Fees
double tax optional the total tax paid
string store_id a unique id for the store sending the order in (20 bytes max)
string store_name optional a "nice" name for the store - typically the base web address (ie, "store.mailchimp.com"). We will automatically update this if it changes (based on store_id)
array items the individual line items for an order using these keys:
<div style="padding-left:30px"><table>
int line_num optional the line number of the item on the order. We will generate these if they are not passed
int product_id the store's internal Id for the product. Lines that do no contain this will be skipped
string sku optional the store's internal SKU for the product. (max 30 bytes)
string product_name the product name for the product_id associated with this item. We will auto update these as they change (based on product_id)
int category_id the store's internal Id for the (main) category associated with this product. Our testing has found this to be a "best guess" scenario
string category_name the category name for the category_id this product is in. Our testing has found this to be a "best guess" scenario. Our plugins walk the category heirarchy up and send "Root - SubCat1 - SubCat4", etc.
double qty the quantity of the item ordered
double cost the cost of a single item (ie, not the extended cost of the line)
</table></div>
* @return bool true if the data is saved, otherwise an error is thrown.
*/
function campaignEcommOrderAdd($order) {
$params = array();
$params["order"] = $order;
return $this->callServer("campaignEcommOrderAdd", $params);
}
/**
* Retrieve all of the lists defined for your user account
*
* @section List Related
* @example mcapi_lists.php
* @example xml-rpc_lists.php
*
* @param array $filters a hash of filters to apply to this query - all are optional:
string list_id optional - return a single list using a known list_id. Accepts multiples separated by commas when not using exact matching
string list_name optional - only lists that match this name
string from_name optional - only lists that have a default from name matching this
string from_email optional - only lists that have a default from email matching this
string from_subject optional - only lists that have a default from email matching this
string created_before optional - only show lists that were created before this date/time - 24 hour format in <strong>GMT</strong>, eg "2013-12-30 20:30:00"
string created_after optional - only show lists that were created since this date/time - 24 hour format in <strong>GMT</strong>, eg "2013-12-30 20:30:00"
boolean exact optional - flag for whether to filter on exact values when filtering, or search within content for filter values - defaults to true
* @param int $start optional - control paging of lists, start results at this list #, defaults to 1st page of data (page 0)
* @param int $limit optional - control paging of lists, number of lists to return with each call, defaults to 25 (max=100)
* @param string sort_field optional - "created" (the created date, default) or "web" (the display order in the web app). Invalid values will fall back on "created" - case insensitive.
* @param string sort_dir optional - "DESC" for descending (default), "ASC" for Ascending. Invalid values will fall back on "created" - case insensitive. Note: to get the exact display order as the web app you'd use "web" and "ASC"
* @return array an array with keys listed in Returned Fields below
int total the total number of lists which matched the provided filters
array data the lists which matched the provided filters, including the following for
string id The list id for this list. This will be used for all other list management functions.
int web_id The list id used in our web app, allows you to create a link directly to it
string name The name of the list.
string date_created The date that this list was created.
boolean email_type_option Whether or not the List supports multiple formats for emails or just HTML
boolean use_awesomebar Whether or not campaigns for this list use the Awesome Bar in archives by default
string default_from_name Default From Name for campaigns using this list
string default_from_email Default From Email for campaigns using this list
string default_subject Default Subject Line for campaigns using this list
string default_language Default Language for this list's forms
double list_rating An auto-generated activity score for the list (0 - 5)
string subscribe_url_short Our eepurl shortened version of this list's subscribe form (will not change)
string subscribe_url_long The full version of this list's subscribe form (host will vary)
string beamer_address The email address to use for this list's <a href="http://kb.mailchimp.com/article/how-do-i-import-a-campaign-via-email-email-beamer/">Email Beamer</a>
string visibility Whether this list is Public (pub) or Private (prv). Used internally for projects like <a href="http://blog.mailchimp.com/introducing-wavelength/" target="_blank">Wavelength</a>
array stats various stats and counts for the list - many of these are cached for at least 5 minutes
double member_count The number of active members in the given list.
double unsubscribe_count The number of members who have unsubscribed from the given list.
double cleaned_count The number of members cleaned from the given list.
double member_count_since_send The number of active members in the given list since the last campaign was sent
double unsubscribe_count_since_send The number of members who have unsubscribed from the given list since the last campaign was sent
double cleaned_count_since_send The number of members cleaned from the given list since the last campaign was sent
double campaign_count The number of campaigns in any status that use this list
double grouping_count The number of Interest Groupings for this list
double group_count The number of Interest Groups (regardless of grouping) for this list
double merge_var_count The number of merge vars for this list (not including the required EMAIL one)
double avg_sub_rate the average number of subscribe per month for the list (empty value if we haven't calculated this yet)
double avg_unsub_rate the average number of unsubscribe per month for the list (empty value if we haven't calculated this yet)
double target_sub_rate the target subscription rate for the list to keep it growing (empty value if we haven't calculated this yet)
double open_rate the average open rate per campaign for the list (empty value if we haven't calculated this yet)
double click_rate the average click rate per campaign for the list (empty value if we haven't calculated this yet)
array modules Any list specific modules installed for this list (example is SocialPro)
*/
function lists($filters=array (
), $start=0, $limit=25, $sort_field='created', $sort_dir='DESC') {
$params = array();
$params["filters"] = $filters;
$params["start"] = $start;
$params["limit"] = $limit;
$params["sort_field"] = $sort_field;
$params["sort_dir"] = $sort_dir;
return $this->callServer("lists", $params);
}
/**
* Get the list of merge tags for a given list, including their name, tag, and required setting
*
* @section List Related
* @example xml-rpc_listMergeVars.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @return array list of merge tags for the list
string name Name of the merge field
bool req Denotes whether the field is required (true) or not (false)
string field_type The "data type" of this merge var. One of: email, text, number, radio, dropdown, date, address, phone, url, imageurl
bool public Whether or not this field is visible to list subscribers
bool show Whether the list owner has this field displayed on their list dashboard
string order The order the list owner has set this field to display in
string default The default value the list owner has set for this field
string size The width of the field to be used
string tag The merge tag that's used for forms and listSubscribe() and listUpdateMember()
array choices For radio and dropdown field types, an array of the options available
int id an unchanging id for the merge var
*/
function listMergeVars($id) {
$params = array();
$params["id"] = $id;
return $this->callServer("listMergeVars", $params);
}
/**
* Add a new merge tag to a given list
*
* @section List Related
* @example xml-rpc_listMergeVarAdd.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $tag The merge tag to add, e.g. FNAME. 10 bytes max, valid characters: "A-Z 0-9 _" no spaces, dashes, etc.
* @param string $name The long description of the tag being added, used for user displays
* @param array $options optional Various options for this merge var. <em>note:</em> for historical purposes this can also take a "boolean"
string field_type optional one of: text, number, radio, dropdown, date, address, phone, url, imageurl, zip, birthday - defaults to text
boolean req optional indicates whether the field is required - defaults to false
boolean public optional indicates whether the field is displayed in public - defaults to true
boolean show optional indicates whether the field is displayed in the app's list member view - defaults to true
int order The order this merge tag should be displayed in - this will cause existing values to be reset so this fits
string default_value optional the default value for the field. See listSubscribe() for formatting info. Defaults to blank
array choices optional kind of - an array of strings to use as the choices for radio and dropdown type fields
string dateformat optional only valid for birthday and date fields. For birthday type, must be "MM/DD" (default) or "DD/MM". For date type, must be "MM/DD/YYYY" (default) or "DD/MM/YYYY". Any other values will be converted to the default.
string phoneformat optional "US" is the default - any other value will cause them to be unformatted (international)
string defaultcountry optional the <a href="http://www.iso.org/iso/english_country_names_and_code_elements" target="_blank">ISO 3166 2 digit character code</a> for the default country. Defaults to "US". Anything unrecognized will be converted to the default.
* @return bool true if the request succeeds, otherwise an error will be thrown
*/
function listMergeVarAdd($id, $tag, $name, $options=array (
)) {
$params = array();
$params["id"] = $id;
$params["tag"] = $tag;
$params["name"] = $name;
$params["options"] = $options;
return $this->callServer("listMergeVarAdd", $params);
}
/**
* Update most parameters for a merge tag on a given list. You cannot currently change the merge type
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $tag The merge tag to update
* @param array $options The options to change for a merge var. See listMergeVarAdd() for valid options. "tag" and "name" may also be used here.
* @return bool true if the request succeeds, otherwise an error will be thrown
*/
function listMergeVarUpdate($id, $tag, $options) {
$params = array();
$params["id"] = $id;
$params["tag"] = $tag;
$params["options"] = $options;
return $this->callServer("listMergeVarUpdate", $params);
}
/**
* Delete a merge tag from a given list and all its members. Seriously - the data is removed from all members as well!
* Note that on large lists this method may seem a bit slower than calls you typically make.
*
* @section List Related
* @example xml-rpc_listMergeVarDel.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $tag The merge tag to delete
* @return bool true if the request succeeds, otherwise an error will be thrown
*/
function listMergeVarDel($id, $tag) {
$params = array();
$params["id"] = $id;
$params["tag"] = $tag;
return $this->callServer("listMergeVarDel", $params);
}
/**
* Completely resets all data stored in a merge var on a list. All data is removed and this action can not be undone.
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $tag The merge tag to reset
* @return bool true if the request succeeds, otherwise an error will be thrown
*/
function listMergeVarReset($id, $tag) {
$params = array();
$params["id"] = $id;
$params["tag"] = $tag;
return $this->callServer("listMergeVarReset", $params);
}
/**
* Get the list of interest groupings for a given list, including the label, form information, and included groups for each
*
* @section List Related
* @example xml-rpc_listInterestGroupings.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @return struct list of interest groups for the list
int id The id for the Grouping
string name Name for the Interest groups
string form_field Gives the type of interest group: checkbox,radio,select
array groups Array of the grouping options including:
string bit the bit value - not really anything to be done with this
string name the name of the group
string display_order the display order of the group, if set
int subscribers total number of subscribers who have this group
*/
function listInterestGroupings($id) {
$params = array();
$params["id"] = $id;
return $this->callServer("listInterestGroupings", $params);
}
/** Add a single Interest Group - if interest groups for the List are not yet enabled, adding the first
* group will automatically turn them on.
*
* @section List Related
* @example xml-rpc_listInterestGroupAdd.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $group_name the interest group to add - group names must be unique within a grouping
* @param int $grouping_id optional The grouping to add the new group to - get using listInterestGrouping() . If not supplied, the first grouping on the list is used.
* @return bool true if the request succeeds, otherwise an error will be thrown
*/
function listInterestGroupAdd($id, $group_name, $grouping_id=NULL) {
$params = array();
$params["id"] = $id;
$params["group_name"] = $group_name;
$params["grouping_id"] = $grouping_id;
return $this->callServer("listInterestGroupAdd", $params);
}
/** Delete a single Interest Group - if the last group for a list is deleted, this will also turn groups for the list off.
*
* @section List Related
* @example xml-rpc_listInterestGroupDel.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $group_name the interest group to delete
* @param int $grouping_id The grouping to delete the group from - get using listInterestGrouping() . If not supplied, the first grouping on the list is used.
* @return bool true if the request succeeds, otherwise an error will be thrown
*/
function listInterestGroupDel($id, $group_name, $grouping_id=NULL) {
$params = array();
$params["id"] = $id;
$params["group_name"] = $group_name;
$params["grouping_id"] = $grouping_id;
return $this->callServer("listInterestGroupDel", $params);
}
/** Change the name of an Interest Group
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $old_name the interest group name to be changed
* @param string $new_name the new interest group name to be set
* @param int $grouping_id optional The grouping to delete the group from - get using listInterestGrouping() . If not supplied, the first grouping on the list is used.
* @return bool true if the request succeeds, otherwise an error will be thrown
*/
function listInterestGroupUpdate($id, $old_name, $new_name, $grouping_id=NULL) {
$params = array();
$params["id"] = $id;
$params["old_name"] = $old_name;
$params["new_name"] = $new_name;
$params["grouping_id"] = $grouping_id;
return $this->callServer("listInterestGroupUpdate", $params);
}
/** Add a new Interest Grouping - if interest groups for the List are not yet enabled, adding the first
* grouping will automatically turn them on.
*
* @section List Related
* @example xml-rpc_listInterestGroupingAdd.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $name the interest grouping to add - grouping names must be unique
* @param string $type The type of the grouping to add - one of "checkboxes", "hidden", "dropdown", "radio"
* @param array $groups The lists of initial group names to be added - at least 1 is required and the names must be unique within a grouping. If the number takes you over the 60 group limit, an error will be thrown.
* @return int the new grouping id if the request succeeds, otherwise an error will be thrown
*/
function listInterestGroupingAdd($id, $name, $type, $groups) {
$params = array();
$params["id"] = $id;
$params["name"] = $name;
$params["type"] = $type;
$params["groups"] = $groups;
return $this->callServer("listInterestGroupingAdd", $params);
}
/** Update an existing Interest Grouping
*
* @section List Related
* @example xml-rpc_listInterestGroupingUpdate.php
*
* @param int $grouping_id the interest grouping id - get from listInterestGroupings()
* @param string $name The name of the field to update - either "name" or "type". Groups with in the grouping should be manipulated using the standard listInterestGroup* methods
* @param string $value The new value of the field. Grouping names must be unique - only "hidden" and "checkboxes" grouping types can be converted between each other.
* @return bool true if the request succeeds, otherwise an error will be thrown
*/
function listInterestGroupingUpdate($grouping_id, $name, $value) {
$params = array();
$params["grouping_id"] = $grouping_id;
$params["name"] = $name;
$params["value"] = $value;
return $this->callServer("listInterestGroupingUpdate", $params);
}
/** Delete an existing Interest Grouping - this will permanently delete all contained interest groups and will remove those selections from all list members
*
* @section List Related
* @example xml-rpc_listInterestGroupingDel.php
*
* @param int $grouping_id the interest grouping id - get from listInterestGroupings()
* @return bool true if the request succeeds, otherwise an error will be thrown
*/
function listInterestGroupingDel($grouping_id) {
$params = array();
$params["grouping_id"] = $grouping_id;
return $this->callServer("listInterestGroupingDel", $params);
}
/** Return the Webhooks configured for the given list
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @return array list of webhooks
string url the URL for this Webhook
array actions the possible actions and whether they are enabled
bool subscribe triggered when subscribes happen
bool unsubscribe triggered when unsubscribes happen
bool profile triggered when profile updates happen
bool cleaned triggered when a subscriber is cleaned (bounced) from a list
bool upemail triggered when a subscriber's email address is changed
bool campaign triggered when a campaign is sent or canceled
array sources the possible sources and whether they are enabled
bool user whether user/subscriber triggered actions are returned
bool admin whether admin (manual, in-app) triggered actions are returned
bool api whether api triggered actions are returned
*/
function listWebhooks($id) {
$params = array();
$params["id"] = $id;
return $this->callServer("listWebhooks", $params);
}
/** Add a new Webhook URL for the given list
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $url a valid URL for the Webhook - it will be validated. note that a url may only exist on a list once.
* @param array $actions optional a hash of actions to fire this Webhook for
bool subscribe optional as subscribes occur, defaults to true
bool unsubscribe optional as subscribes occur, defaults to true
bool profile optional as profile updates occur, defaults to true
bool cleaned optional as emails are cleaned from the list, defaults to true
bool upemail optional when subscribers change their email address, defaults to true
bool campaign option when a campaign is sent or canceled, defaults to true
* @param array $sources optional a hash of sources to fire this Webhook for
bool user optional user/subscriber initiated actions, defaults to true
bool admin optional admin actions in our web app, defaults to true
bool api optional actions that happen via API calls, defaults to false
* @return bool true if the call succeeds, otherwise an exception will be thrown
*/
function listWebhookAdd($id, $url, $actions=array (
), $sources=array (
)) {
$params = array();
$params["id"] = $id;
$params["url"] = $url;
$params["actions"] = $actions;
$params["sources"] = $sources;
return $this->callServer("listWebhookAdd", $params);
}
/** Delete an existing Webhook URL from a given list
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $url the URL of a Webhook on this list
* @return boolean true if the call succeeds, otherwise an exception will be thrown
*/
function listWebhookDel($id, $url) {
$params = array();
$params["id"] = $id;
$params["url"] = $url;
return $this->callServer("listWebhookDel", $params);
}
/** Retrieve all of the Static Segments for a list.
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @return array an array of parameters for each static segment
int id the id of the segment
string name the name for the segment
int member_count the total number of subscribed members currently in a segment
string created_date the date/time the segment was created
string last_update the date/time the segment was last updated (add or del)
string last_reset the date/time the segment was last reset (ie had all members cleared from it)
*/
function listStaticSegments($id) {
$params = array();
$params["id"] = $id;
return $this->callServer("listStaticSegments", $params);
}
/** Save a segment against a list for later use. There is no limit to the number of segments which can be saved. Static Segments <strong>are not</strong> tied
* to any merge data, interest groups, etc. They essentially allow you to configure an unlimited number of custom segments which will have standard performance.
* When using proper segments, Static Segments are one of the available options for segmentation just as if you used a merge var (and they can be used with other segmentation
* options), though performance may degrade at that point.
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $name a unique name per list for the segment - 50 byte maximum length, anything longer will throw an error
* @return int the id of the new segment, otherwise an error will be thrown.
*/
function listStaticSegmentAdd($id, $name) {
$params = array();
$params["id"] = $id;
$params["name"] = $name;
return $this->callServer("listStaticSegmentAdd", $params);
}
/** Resets a static segment - removes <strong>all</strong> members from the static segment. Note: does not actually affect list member data
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @param int $seg_id the id of the static segment to reset - get from listStaticSegments()
* @return bool true if it worked, otherwise an error is thrown.
*/
function listStaticSegmentReset($id, $seg_id) {
$params = array();
$params["id"] = $id;
$params["seg_id"] = $seg_id;
return $this->callServer("listStaticSegmentReset", $params);
}
/** Delete a static segment. Note that this will, of course, remove any member affiliations with the segment
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @param int $seg_id the id of the static segment to delete - get from listStaticSegments()
* @return bool true if it worked, otherwise an error is thrown.
*/
function listStaticSegmentDel($id, $seg_id) {
$params = array();
$params["id"] = $id;
$params["seg_id"] = $seg_id;
return $this->callServer("listStaticSegmentDel", $params);
}
/** Add list members to a static segment. It is suggested that you limit batch size to no more than 10,000 addresses per call. Email addresses must exist on the list
* in order to be included - this <strong>will not</strong> subscribe them to the list!
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @param int $seg_id the id of the static segment to modify - get from listStaticSegments()
* @param array $batch an array of email addresses and/or unique_ids to add to the segment
* @return array an array with the results of the operation
int success the total number of successful updates (will include members already in the segment)
array errors error data including:
string email address the email address in question
string code the error code
string msg the full error message
*/
function listStaticSegmentMembersAdd($id, $seg_id, $batch) {
$params = array();
$params["id"] = $id;
$params["seg_id"] = $seg_id;
$params["batch"] = $batch;
return $this->callServer("listStaticSegmentMembersAdd", $params);
}
/** Remove list members from a static segment. It is suggested that you limit batch size to no more than 10,000 addresses per call. Email addresses must exist on the list
* in order to be removed - this <strong>will not</strong> unsubscribe them from the list!
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @param int $seg_id the id of the static segment to delete - get from listStaticSegments()
* @param array $batch an array of email addresses and/or unique_ids to remove from the segment
* @return array an array with the results of the operation
int success the total number of succesful removals
array errors error data including:
string email address the email address in question
string code the error code
string msg the full error message
*/
function listStaticSegmentMembersDel($id, $seg_id, $batch) {
$params = array();
$params["id"] = $id;
$params["seg_id"] = $seg_id;
$params["batch"] = $batch;
return $this->callServer("listStaticSegmentMembersDel", $params);
}
/**
* Subscribe the provided email to a list. By default this sends a confirmation email - you will not see new members until the link contained in it is clicked!
*
* @section List Related
*
* @example mcapi_listSubscribe.php
* @example json_listSubscribe.php
* @example xml-rpc_listSubscribe.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $email_address the email address to subscribe
* @param array $merge_vars optional merges for the email (FNAME, LNAME, etc.) (see examples below for handling "blank" arrays). Note that a merge field can only hold up to 255 bytes. Also, there are a few "special" keys:
string EMAIL set this to change the email address. This is only respected on calls using update_existing or when passed to listUpdateMember()
string NEW-EMAIL set this to change the email address. This is only respected on calls using update_existing or when passed to listUpdateMember(). Required to change via listBatchSubscribe() - EMAIL takes precedence on other calls, though either will work.
array GROUPINGS Set Interest Groups by Grouping. Each element in this array should be an array containing the "groups" parameter which contains a comma delimited list of Interest Groups to add. Commas in Interest Group names should be escaped with a backslash. ie, "," =&gt; "\," and either an "id" or "name" parameter to specify the Grouping - get from listInterestGroupings()
string OPTIN_IP Set the Opt-in IP field. <em>Abusing this may cause your account to be suspended.</em> We do validate this and it must not be a private IP address.
string OPTIN_TIME Set the Opt-in Time field. <em>Abusing this may cause your account to be suspended.</em> We do validate this and it must be a valid date. Use - 24 hour format in <strong>GMT</strong>, eg "2013-12-30 20:30:00" to be safe. Generally, though, anything strtotime() understands we'll understand - <a href="http://us2.php.net/strtotime" target="_blank">http://us2.php.net/strtotime</a>
array MC_LOCATION Set the member's geographic location. By default if this merge field exists, we'll update using the optin_ip if it exists. If the array contains LATITUDE and LONGITUDE keys, they will be used. NOTE - this will slow down each subscribe call a bit, especially for lat/lng pairs in sparsely populated areas. Currently our automated background processes can and will overwrite this based on opens and clicks.
string MC_LANGUAGE Set the member's language preference. Supported codes are fully case-sensitive and can be found <a href="http://kb.mailchimp.com/article/can-i-see-what-languages-my-subscribers-use#code" target="_new">here</a>.
array MC_NOTES Add, update, or delete notes associated with a member. The array must contain either a "note" key (the note to set) or an "id" key (the note id to modify). If the "id" key exists and is valid, an "update" key may be set to "append" (default), "prepend", "replace", or "delete" to handle how we should update existing notes. If a "note" key is passed and the "id" key is not passed or is not valid, a new note will be added. "delete", obviously, will only work with a valid "id" - passing that along with "note" and an invalid "id" is wrong and will be ignored. If this is not an array, it will silently be ignored.
<strong>Handling Field Data Types</strong> - most fields you can just pass a string and all is well. For some, though, that is not the case...
Field values should be formatted as follows:
string address For the string version of an Address, the fields should be delimited by <strong>2</strong> spaces. Address 2 can be skipped. The Country should be a 2 character ISO-3166-1 code and will default to your default country if not set
array address For the array version of an Address, the requirements for Address 2 and Country are the same as with the string version. Then simply pass us an array with the keys <strong>addr1</strong>, <strong>addr2</strong>, <strong>city</strong>, <strong>state</strong>, <strong>zip</strong>, <strong>country</strong> and appropriate values for each
string birthday the month and day of birth, passed as MM/DD
array birthday the month and day of birth, passed in an array using the keys <strong>month</strong> and <strong>day</strong>
string date use YYYY-MM-DD to be safe. Generally, though, anything strtotime() understands we'll understand - <a href="http://us2.php.net/strtotime" target="_blank">http://us2.php.net/strtotime</a>
string dropdown can be a normal string - we <em>will</em> validate that the value is a valid option
string image must be a valid, existing url. we <em>will</em> check its existence
string multi_choice can be a normal string - we <em>will</em> validate that the value is a valid option
double number pass in a valid number - anything else will turn in to zero (0). Note, this will be rounded to 2 decimal places
string phone If your account has the US Phone numbers option set, this <em>must</em> be in the form of NPA-NXX-LINE (404-555-1212). If not, we assume an International number and will simply set the field with what ever number is passed in.
string website This is a standard string, but we <em>will</em> verify that it looks like a valid URL
string zip A U.S. zip code. We'll validate this is a 4 or 5 digit number.
* @param string $email_type optional email type preference for the email (html or text - defaults to html)
* @param bool $double_optin optional flag to control whether a double opt-in confirmation message is sent, defaults to true. <em>Abusing this may cause your account to be suspended.</em>
* @param bool $update_existing optional flag to control whether existing subscribers should be updated instead of throwing an error, defaults to false
* @param bool $replace_interests optional flag to determine whether we replace the interest groups with the groups provided or we add the provided groups to the member's interest groups (optional, defaults to true)
* @param bool $send_welcome optional if your double_optin is false and this is true, we will send your lists Welcome Email if this subscribe succeeds - this will *not* fire if we end up updating an existing subscriber. If double_optin is true, this has no effect. defaults to false.
* @return boolean true on success, false on failure. When using MCAPI.class.php, the value can be tested and error messages pulled from the MCAPI object (see below)
*/
function listSubscribe($id, $email_address, $merge_vars=NULL, $email_type='html', $double_optin=true, $update_existing=false, $replace_interests=true, $send_welcome=false) {
$params = array();
$params["id"] = $id;
$params["email_address"] = $email_address;
$params["merge_vars"] = $merge_vars;
$params["email_type"] = $email_type;
$params["double_optin"] = $double_optin;
$params["update_existing"] = $update_existing;
$params["replace_interests"] = $replace_interests;
$params["send_welcome"] = $send_welcome;
return $this->callServer("listSubscribe", $params);
}
/**
* Unsubscribe the given email address from the list
*
* @section List Related
* @example mcapi_listUnsubscribe.php
* @example xml-rpc_listUnsubscribe.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $email_address the email address to unsubscribe OR the email "id" returned from listMemberInfo, Webhooks, and Campaigns
* @param boolean $delete_member flag to completely delete the member from your list instead of just unsubscribing, default to false
* @param boolean $send_goodbye flag to send the goodbye email to the email address, defaults to true
* @param boolean $send_notify flag to send the unsubscribe notification email to the address defined in the list email notification settings, defaults to true
* @return boolean true on success, false on failure. When using MCAPI.class.php, the value can be tested and error messages pulled from the MCAPI object (see below)
*/
function listUnsubscribe($id, $email_address, $delete_member=false, $send_goodbye=true, $send_notify=true) {
$params = array();
$params["id"] = $id;
$params["email_address"] = $email_address;
$params["delete_member"] = $delete_member;
$params["send_goodbye"] = $send_goodbye;
$params["send_notify"] = $send_notify;
return $this->callServer("listUnsubscribe", $params);
}
/**
* Edit the email address, merge fields, and interest groups for a list member. If you are doing a batch update on lots of users,
* consider using listBatchSubscribe() with the update_existing and possible replace_interests parameter.
*
* @section List Related
* @example mcapi_listUpdateMember.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $email_address the current email address of the member to update OR the "id" for the member returned from listMemberInfo, Webhooks, and Campaigns
* @param array $merge_vars array of new field values to update the member with. See merge_vars in listSubscribe() for details.
* @param string $email_type change the email type preference for the member ("html" or "text"). Leave blank to keep the existing preference (optional)
* @param boolean $replace_interests flag to determine whether we replace the interest groups with the updated groups provided, or we add the provided groups to the member's interest groups (optional, defaults to true)
* @return boolean true on success, false on failure. When using MCAPI.class.php, the value can be tested and error messages pulled from the MCAPI object
*/
function listUpdateMember($id, $email_address, $merge_vars, $email_type='', $replace_interests=true) {
$params = array();
$params["id"] = $id;
$params["email_address"] = $email_address;
$params["merge_vars"] = $merge_vars;
$params["email_type"] = $email_type;
$params["replace_interests"] = $replace_interests;
return $this->callServer("listUpdateMember", $params);
}
/**
* Subscribe a batch of email addresses to a list at once. If you are using a serialized version of the API, we strongly suggest that you
* only run this method as a POST request, and <em>not</em> a GET request. Maximum batch sizes vary based on the amount of data in each record,
* though you should cap them at 5k - 10k records, depending on your experience. These calls are also long, so be sure you increase your timeout values.
*
* @section List Related
*
* @example mcapi_listBatchSubscribe.php
* @example xml-rpc_listBatchSubscribe.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @param array $batch an array of structs for each address to import with two special keys: "EMAIL" for the email address, and "EMAIL_TYPE" for the email type option (html or text). Aside from those, see listSubscribe() for other merge var options
* @param boolean $double_optin flag to control whether to send an opt-in confirmation email - defaults to true
* @param boolean $update_existing flag to control whether to update members that are already subscribed to the list or to return an error, defaults to false (return error)
* @param boolean $replace_interests flag to determine whether we replace the interest groups with the updated groups provided, or we add the provided groups to the member's interest groups (optional, defaults to true)
* @return array Array of result counts and any errors that occurred
int add_count Number of email addresses that were succesfully added
int update_count Number of email addresses that were succesfully updated
int error_count Number of email addresses that failed during addition/updating
array errors error data including:
string email address the email address in question
int code the error code
string message the full error message
*/
function listBatchSubscribe($id, $batch, $double_optin=true, $update_existing=false, $replace_interests=true) {
$params = array();
$params["id"] = $id;
$params["batch"] = $batch;
$params["double_optin"] = $double_optin;
$params["update_existing"] = $update_existing;
$params["replace_interests"] = $replace_interests;
return $this->callServer("listBatchSubscribe", $params);
}
/**
* Unsubscribe a batch of email addresses to a list
*
* @section List Related
* @example mcapi_listBatchUnsubscribe.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @param array $emails array of email addresses to unsubscribe
* @param boolean $delete_member flag to completely delete the member from your list instead of just unsubscribing, default to false
* @param boolean $send_goodbye flag to send the goodbye email to the email addresses, defaults to true
* @param boolean $send_notify flag to send the unsubscribe notification email to the address defined in the list email notification settings, defaults to false
* @return array Array of result counts and any errors that occurred
int success_count Number of email addresses that were succesfully added/updated
int error_count Number of email addresses that failed during addition/updating
array errors error data including:
string email address the email address in question
int code the error code
string message the full error message
*/
function listBatchUnsubscribe($id, $emails, $delete_member=false, $send_goodbye=true, $send_notify=false) {
$params = array();
$params["id"] = $id;
$params["emails"] = $emails;
$params["delete_member"] = $delete_member;
$params["send_goodbye"] = $send_goodbye;
$params["send_notify"] = $send_notify;
return $this->callServer("listBatchUnsubscribe", $params);
}
/**
* Get all of the list members for a list that are of a particular status. Are you trying to get a dump including lots of merge
* data or specific members of a list? If so, checkout the <a href="/export">Export API</a>
*
* @section List Related
* @example mcapi_listMembers.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @param string $status the status to get members for - one of(subscribed, unsubscribed, <a target="_blank" href="http://eepurl.com/gWOO">cleaned</a>, updated), defaults to subscribed
* @param string $since optional pull all members whose status (subscribed/unsubscribed/cleaned) has changed or whose profile (updated) has changed since this date/time - 24 hour format in <strong>GMT</strong>, eg "2013-12-30 20:30:00"
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 100, upper limit set at 15000
* @param string $sort_dir optional ASC for ascending, DESC for descending. defaults to ASC even if an invalid value is encountered.
* @return array Array of a the total records match and matching list member data for this page (see Returned Fields for details)
int total the total matching records
array data the data for each member, including:
string email Member email address
date timestamp timestamp of their associated status date (subscribed, unsubscribed, cleaned, or updated) in GMT
string reason For unsubscribes only - the reason collected for the unsubscribe. If populated, one of 'NORMAL','NOSIGNUP','INAPPROPRIATE','SPAM','OTHER'
string reason_text For unsubscribes only - if the reason is OTHER, the text entered.
*/
function listMembers($id, $status='subscribed', $since=NULL, $start=0, $limit=100, $sort_dir='ASC') {
$params = array();
$params["id"] = $id;
$params["status"] = $status;
$params["since"] = $since;
$params["start"] = $start;
$params["limit"] = $limit;
$params["sort_dir"] = $sort_dir;
return $this->callServer("listMembers", $params);
}
/**
* Get all the information for particular members of a list
*
* @section List Related
* @example mcapi_listMemberInfo.php
* @example xml-rpc_listMemberInfo.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @param array $email_address an array of up to 50 email addresses to get information for OR the "id"(s) for the member returned from listMembers, Webhooks, and Campaigns. For backwards compatibility, if a string is passed, it will be treated as an array with a single element (will not work with XML-RPC).
* @return array array of list members with their info in an array (see Returned Fields for details)
int success the number of subscribers successfully found on the list
int errors the number of subscribers who were not found on the list
array data an array of arrays where each one has member info:
string id The unique id for this email address on an account
string email The email address associated with this record
string email_type The type of emails this customer asked to get: html or tex
array merges An associative array of all the merge tags and the data for those tags for this email address. <em>Note</em>: Interest Groups are returned as comma delimited strings - if a group name contains a comma, it will be escaped with a backslash. ie, "," =&gt; "\,". Groupings will be returned with their "id" and "name" as well as a "groups" field formatted just like Interest Groups
string status The subscription status for this email address, either pending, subscribed, unsubscribed, or cleaned
string ip_signup IP Address this address signed up from. This may be blank if single optin is used.
string timestamp_signup The date/time the double optin was initiated. This may be blank if single optin is used.
string ip_opt IP Address this address opted in from.
string timestamp_opt The date/time the optin completed
int member_rating the rating of the subscriber. This will be 1 - 5 as described <a href="http://eepurl.com/f-2P" target="_blank">here</a>
string campaign_id If the user is unsubscribed and they unsubscribed from a specific campaign, that campaign_id will be listed, otherwise this is not returned.
array lists An associative array of the other lists this member belongs to - the key is the list id and the value is their status in that list.
string timestamp The date/time this email address entered it's current status
string info_changed The last time this record was changed. If the record is old enough, this may be blank.
int web_id The Member id used in our web app, allows you to create a link directly to it
string list_id The list id the for the member record being returned
string language if set/detected, a language code from <a href="http://kb.mailchimp.com/article/can-i-see-what-languages-my-subscribers-use#code" target="_blank">here</a>
bool is_gmonkey Whether the member is a <a href="http://mailchimp.com/features/golden-monkeys/" target="_blank">Golden Monkey</a> or not.
array geo the geographic information if we have it. including:
string latitude the latitude
string longitude the longitude
string gmtoff GMT offset
string dstoff GMT offset during daylight savings (if DST not observered, will be same as gmtoff
string timezone the timezone we've place them in
string cc 2 digit ISO-3166 country code
string region generally state, province, or similar
array clients the client we've tracked the address as using with two keys:
string name the common name of the client
string icon_url a url representing a path to an icon representing this client
array static_segments static segments the member is a part of including:
int id the segment id
string name the name given to the segment
string added the date the member was added
array notes notes entered for this member. For each note:
int id the note id
string note the text entered
string created the date the note was created
string updated the date the note was last updated
string created_by_name the name of the user who created the note. This can change as users update their profile.
*/
function listMemberInfo($id, $email_address) {
$params = array();
$params["id"] = $id;
$params["email_address"] = $email_address;
return $this->callServer("listMemberInfo", $params);
}
/**
* Get the most recent 100 activities for particular list members (open, click, bounce, unsub, abuse, sent to)
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @param array $email_address an array of up to 50 email addresses to get information for OR the "id"(s) for the member returned from listMembers, Webhooks, and Campaigns.
* @return array array of data and success/error counts
int success the number of subscribers successfully found on the list
int errors the number of subscribers who were not found on the list
array data an array of arrays where each activity record has:
string action The action name, one of: open, click, bounce, unsub, abuse, sent, queued, ecomm, mandrill_send, mandrill_hard_bounce, mandrill_soft_bounce, mandrill_open, mandrill_click, mandrill_spam, mandrill_unsub, mandrill_reject
string timestamp The date/time of the action
string url For click actions, the url clicked, otherwise this is empty
string type If there's extra bounce, unsub, etc data it will show up here.
string bounce_type For backwards compat, this will exist and be the same data as "type"
string campaign_id The campaign id the action was related to, if it exists - otherwise empty (ie, direct unsub from list)
*/
function listMemberActivity($id, $email_address) {
$params = array();
$params["id"] = $id;
$params["email_address"] = $email_address;
return $this->callServer("listMemberActivity", $params);
}
/**
* Get all email addresses that complained about a given campaign
*
* @section List Related
*
* @example mcapi_listAbuseReports.php
*
* @param string $id the list id to pull abuse reports for (can be gathered using lists())
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 500, upper limit set at 1000
* @param string $since optional pull only messages since this time - 24 hour format in <strong>GMT</strong>, eg "2013-12-30 20:30:00"
* @return array the total of all reports and the specific reports reports this page
int total the total number of matching abuse reports
array data the actual data for each reports, including:
string date date/time the abuse report was received and processed
string email the email address that reported abuse
string campaign_id the unique id for the campaign that report was made against
string type an internal type generally specifying the orginating mail provider - may not be useful outside of filling report views
*/
function listAbuseReports($id, $start=0, $limit=500, $since=NULL) {
$params = array();
$params["id"] = $id;
$params["start"] = $start;
$params["limit"] = $limit;
$params["since"] = $since;
return $this->callServer("listAbuseReports", $params);
}
/**
* Access the Growth History by Month for a given list.
*
* @section List Related
*
* @example mcapi_listGrowthHistory.php
*
* @param string $id the list id to connect to. Get by calling lists()
* @return array array of months and growth
string month The Year and Month in question using YYYY-MM format
int existing number of existing subscribers to start the month
int imports number of subscribers imported during the month
int optins number of subscribers who opted-in during the month
*/
function listGrowthHistory($id) {
$params = array();
$params["id"] = $id;
return $this->callServer("listGrowthHistory", $params);
}
/**
* Access up to the previous 180 days of daily detailed aggregated activity stats for a given list
*
* @section List Related
*
*
* @param string $id the list id to connect to. Get by calling lists()
* @return array array of array of daily values, each containing:
string day The day in YYYY-MM-DD
int emails_sent number of emails sent to the list
int unique_opens number of unique opens for the list
int recipient_clicks number of clicks for the list
int hard_bounce number of hard bounces for the list
int soft_bounce number of soft bounces for the list
int abuse_reports number of abuse reports for the list
int subs number of double optin subscribes for the list
int unsubs number of manual unsubscribes for the list
int other_adds number of non-double optin subscribes for the list (manual, API, or import)
int other_removes number of non-manual unsubscribes for the list (deletions, empties, soft-bounce removals)
*/
function listActivity($id) {
$params = array();
$params["id"] = $id;
return $this->callServer("listActivity", $params);
}
/**
* Retrieve the locations (countries) that the list's subscribers have been tagged to based on geocoding their IP address
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @return array array of locations
string country the country name
string cc the 2 digit country code
double percent the percent of subscribers in the country
double total the total number of subscribers in the country
*/
function listLocations($id) {
$params = array();
$params["id"] = $id;
return $this->callServer("listLocations", $params);
}
/**
* Retrieve the clients that the list's subscribers have been tagged as being used based on user agents seen. Made possible by <a href="http://user-agent-string.info" target="_blank">user-agent-string.info</a>
*
* @section List Related
*
* @param string $id the list id to connect to. Get by calling lists()
* @return array the desktop and mobile user agents in use on the list
array desktop desktop user agents and percentages
double penetration the percent of desktop clients in use
array clients a record for each containing:
string client the common name for the client
string icon a url to an image representing this client
string percent percent of list using the client
string members total members using the client
array mobile mobile user agents and percentages
double penetration the percent of mobile clients in use
array clients a record for each containing:
string client the common name for the client
string icon a url to an image representing this client
string percent percent of list using the client
string members total members using the client
*/
function listClients($id) {
$params = array();
$params["id"] = $id;
return $this->callServer("listClients", $params);
}
/**
* Retrieve various templates available in the system, allowing some thing similar to our template gallery to be created.
*
* @section Template Related
* @example mcapi_templates.php
* @example xml-rpc_templates.php
*
* @param array $types optional the types of templates to return
boolean user Custom templates for this user account. Defaults to true.
boolean gallery Templates from our Gallery. Note that some templates that require extra configuration are withheld. (eg, the Etsy template). Defaults to false.
boolean base Our "start from scratch" extremely basic templates. Defaults to false.
* @param string $category optional for Gallery templates only, limit to a specific template category
* @param array $inactives optional options to control how inactive templates are returned, if at all
boolean include user templates are not deleted, only set inactive. defaults to false.
boolean only only include inactive templates. defaults to false.
* @return array An array of arrays, one for each template
int id Id of the template
string name Name of the template
string layout Layout of the template - "basic", "left_column", "right_column", or "postcard"
string preview_image If we've generated it, the url of the preview image for the template. We do out best to keep these up to date, but Preview image urls are not guaranteed to be available
string date_created The date/time the template was created
boolean edit_source Whether or not you are able to edit the source of a template.
*/
function templates($types=array (
), $category=NULL, $inactives=array (
)) {
$params = array();
$params["types"] = $types;
$params["category"] = $category;
$params["inactives"] = $inactives;
return $this->callServer("templates", $params);
}
/**
* Pull details for a specific template to help support editing
*
* @section Template Related
*
* @param int $tid the template id - get from templates()
* @param string $type optional the template type to load - one of 'user', 'gallery', 'base', defaults to user.
* @return array an array of info to be used when editing
array default_content the default content broken down into the named editable sections for the template - dependant upon template, so not documented
array sections the valid editable section names - dependant upon template, so not documented
string source the full source of the template as if you exported it via our template editor
string preview similar to the source, but the rendered version of the source from our popup preview
*/
function templateInfo($tid, $type='user') {
$params = array();
$params["tid"] = $tid;
$params["type"] = $type;
return $this->callServer("templateInfo", $params);
}
/**
* Create a new user template, <strong>NOT</strong> campaign content. These templates can then be applied while creating campaigns.
*
* @section Template Related
* @example mcapi_create_template.php
* @example xml-rpc_create_template.php
*
* @param string $name the name for the template - names must be unique and a max of 50 bytes
* @param string $html a string specifying the entire template to be created. This is <strong>NOT</strong> campaign content. They are intended to utilize our <a href="http://www.mailchimp.com/resources/email-template-language/" target="_blank">template language</a>.
* @return int the new template id, otherwise an error is thrown.
*/
function templateAdd($name, $html) {
$params = array();
$params["name"] = $name;
$params["html"] = $html;
return $this->callServer("templateAdd", $params);
}
/**
* Replace the content of a user template, <strong>NOT</strong> campaign content.
*
* @section Template Related
*
* @param int $id the id of the user template to update
* @param array $values the values to updates - while both are optional, at least one should be provided. Both can be updated at the same time.
string name optional the name for the template - names must be unique and a max of 50 bytes
string html optional a string specifying the entire template to be created. This is <strong>NOT</strong> campaign content. They are intended to utilize our <a href="http://www.mailchimp.com/resources/email-template-language/" target="_blank">template language</a>.
* @return boolean true if the template was updated, otherwise an error will be thrown
*/
function templateUpdate($id, $values) {
$params = array();
$params["id"] = $id;
$params["values"] = $values;
return $this->callServer("templateUpdate", $params);
}
/**
* Delete (deactivate) a user template
*
* @section Template Related
*
* @param int $id the id of the user template to delete
* @return boolean true if the template was deleted, otherwise an error will be thrown
*/
function templateDel($id) {
$params = array();
$params["id"] = $id;
return $this->callServer("templateDel", $params);
}
/**
* Undelete (reactivate) a user template
*
* @section Template Related
*
* @param int $id the id of the user template to reactivate
* @return boolean true if the template was deleted, otherwise an error will be thrown
*/
function templateUndel($id) {
$params = array();
$params["id"] = $id;
return $this->callServer("templateUndel", $params);
}
/**
* Retrieve lots of account information including payments made, plan info, some account stats, installed modules,
* contact info, and more. No private information like Credit Card numbers is available.
*
* @section Helper
*
* @param array $exclude optional defaults to nothing for backwards compatibility. Allows controlling which extra arrays are returned since they can slow down calls. Valid keys are "modules", "orders", "rewards-credits", "rewards-inspections", "rewards-referrals", and "rewards-applied". Hint: "rewards-referrals" is typically the culprit. To avoid confusion, if data is excluded, the corresponding key <strong>will not be returned at all</strong>.
* @return array containing the details for the account tied to this API Key
string username The Account username
string user_id The Account user unique id (for building some links)
bool is_trial Whether the Account is in Trial mode (can only send campaigns to less than 100 emails)
bool is_approved Whether the Account has been approved for purchases
bool has_activated Whether the Account has been activated
string timezone The timezone for the Account - default is "US/Eastern"
string plan_type Plan Type - "monthly", "payasyougo", or "free"
int plan_low <em>only for Monthly plans</em> - the lower tier for list size
int plan_high <em>only for Monthly plans</em> - the upper tier for list size
string plan_start_date <em>only for Monthly plans</em> - the start date for a monthly plan
int emails_left <em>only for Free and Pay-as-you-go plans</em> emails credits left for the account
bool pending_monthly Whether the account is finishing Pay As You Go credits before switching to a Monthly plan
string first_payment date of first payment
string last_payment date of most recent payment
int times_logged_in total number of times the account has been logged into via the web
string last_login date/time of last login via the web
string affiliate_link Monkey Rewards link for our Affiliate program
array contact Contact details for the account
string fname First Name
string lname Last Name
string email Email Address
string company Company Name
string address1 Address Line 1
string address2 Address Line 2
string city City
string state State or Province
string zip Zip or Postal Code
string country Country name
string url Website URL
string phone Phone number
string fax Fax number
array modules Addons installed in the account
string id An internal module id
string name The module name
string added The date the module was added
array data Any extra data associated with this module as key=>value pairs
array orders Order details for the account
int order_id The order id
string type The order type - either "monthly" or "credits"
double amount The order amount
string date The order date
double credits_used The total credits used
array rewards Rewards details for the account including credits & inspections earned, number of referals, referal details, and rewards used
int referrals_this_month the total number of referrals this month
string notify_on whether or not we notify the user when rewards are earned
string notify_email the email address address used for rewards notifications
array credits Email credits earned:
int this_month credits earned this month
int total_earned credits earned all time
int remaining credits remaining
array inspections Inbox Inspections earned:
int this_month credits earned this month
int total_earned credits earned all time
int remaining credits remaining
array referrals All referrals, including:
string name the name of the account
string email the email address associated with the account
string signup_date the signup date for the account
string type the source for the referral
array applied Applied rewards, including:
int value the number of credits user
string date the date appplied
int order_id the order number credits were applied to
string order_desc the order description
*/
function getAccountDetails($exclude=array (
)) {
$params = array();
$params["exclude"] = $exclude;
return $this->callServer("getAccountDetails", $params);
}
/**
* Retrieve all domains verification records for an account
*
* @section Helper
*
* @return array records of domains verification has been attempted for
string domain the verified domain
string status the status of the verification - either "verified" or "pending"
string email the email address used for verification
*/
function getVerifiedDomains() {
$params = array();
return $this->callServer("getVerifiedDomains", $params);
}
/**
* Have HTML content auto-converted to a text-only format. You can send: plain HTML, an array of Template content, an existing Campaign Id, or an existing Template Id. Note that this will <strong>not</strong> save anything to or update any of your lists, campaigns, or templates.
*
* @section Helper
* @example xml-rpc_generateText.php
*
* @param string $type The type of content to parse. Must be one of: "html", "template", "url", "cid" (Campaign Id), or "tid" (Template Id)
* @param mixed $content The content to use. For "html" expects a single string value, "template" expects an array like you send to campaignCreate, "url" expects a valid & public URL to pull from, "cid" expects a valid Campaign Id, and "tid" expects a valid Template Id on your account.
* @return string the content pass in converted to text.
*/
function generateText($type, $content) {
$params = array();
$params["type"] = $type;
$params["content"] = $content;
return $this->callServer("generateText", $params);
}
/**
* Send your HTML content to have the CSS inlined and optionally remove the original styles.
*
* @section Helper
* @example xml-rpc_inlineCss.php
*
* @param string $html Your HTML content
* @param bool $strip_css optional Whether you want the CSS &lt;style&gt; tags stripped from the returned document. Defaults to false.
* @return string Your HTML content with all CSS inlined, just like if we sent it.
*/
function inlineCss($html, $strip_css=false) {
$params = array();
$params["html"] = $html;
$params["strip_css"] = $strip_css;
return $this->callServer("inlineCss", $params);
}
/**
* List all the folders for a user account
*
* @section Folder Related
* @example mcapi_folders.php
* @example xml-rpc_folders.php
*
* @param string $type optional the type of folders to return - either "campaign" or "autoresponder". Defaults to "campaign"
* @return array Array of folder structs (see Returned Fields for details)
int folder_id Folder Id for the given folder, this can be used in the campaigns() function to filter on.
string name Name of the given folder
string date_created The date/time the folder was created
string type The type of the folders being returned, just to make sure you know.
*/
function folders($type='campaign') {
$params = array();
$params["type"] = $type;
return $this->callServer("folders", $params);
}
/**
* Add a new folder to file campaigns or autoresponders in
*
* @section Folder Related
* @example mcapi_folderAdd.php
* @example xml-rpc_folderAdd.php
*
* @param string $name a unique name for a folder (max 100 bytes)
* @param string $type optional the type of folder to create - either "campaign" or "autoresponder". Defaults to "campaign"
* @return int the folder_id of the newly created folder.
*/
function folderAdd($name, $type='campaign') {
$params = array();
$params["name"] = $name;
$params["type"] = $type;
return $this->callServer("folderAdd", $params);
}
/**
* Update the name of a folder for campaigns or autoresponders
*
* @section Folder Related
*
* @param int $fid the folder id to update - retrieve from folders()
* @param string $name a new, unique name for the folder (max 100 bytes)
* @param string $type optional the type of folder to create - either "campaign" or "autoresponder". Defaults to "campaign"
* @return bool true if the update worked, otherwise an exception is thrown
*/
function folderUpdate($fid, $name, $type='campaign') {
$params = array();
$params["fid"] = $fid;
$params["name"] = $name;
$params["type"] = $type;
return $this->callServer("folderUpdate", $params);
}
/**
* Delete a campaign or autoresponder folder. Note that this will simply make campaigns in the folder appear unfiled, they are not removed.
*
* @section Folder Related
*
* @param int $fid the folder id to update - retrieve from folders()
* @param string $type optional the type of folder to create - either "campaign" or "autoresponder". Defaults to "campaign"
* @return bool true if the delete worked, otherwise an exception is thrown
*/
function folderDel($fid, $type='campaign') {
$params = array();
$params["fid"] = $fid;
$params["type"] = $type;
return $this->callServer("folderDel", $params);
}
/**
* Retrieve the Ecommerce Orders for an account
*
* @section Ecommerce
*
* @param int $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0)
* @param int $limit optional for large data sets, the number of results to return - defaults to 100, upper limit set at 500
* @param string $since optional pull only messages since this time - 24 hour format in <strong>GMT</strong>, eg "2013-12-30 20:30:00"
* @return array the total matching orders and the specific orders for the requested page
int total the total matching orders
array data the actual data for each order being returned
string store_id the store id generated by the plugin used to uniquely identify a store
string store_name the store name collected by the plugin - often the domain name
string order_id the internal order id the store tracked this order by
string email the email address that received this campaign and is associated with this order
double order_total the order total
double tax_total the total tax for the order (if collected)
double ship_total the shipping total for the order (if collected)
string order_date the date the order was tracked - from the store if possible, otherwise the GMT time we received it
array lines containing the detail of line of the order:
int line_num the line number
int product_id the product id
string product_name the product name
string product_sku the sku for the product
int product_category_id the category id for the product
string product_category_name the category name for the product
int qty the quantity ordered
double cost the cost of the item
*/
function ecommOrders($start=0, $limit=100, $since=NULL) {
$params = array();
$params["start"] = $start;
$params["limit"] = $limit;
$params["since"] = $since;
return $this->callServer("ecommOrders", $params);
}
/**
* Import Ecommerce Order Information to be used for Segmentation. This will generally be used by ecommerce package plugins
* <a href="http://connect.mailchimp.com/category/ecommerce" target="_blank">provided by us or by 3rd part system developers</a>.
* @section Ecommerce
*
* @param array $order an array of information pertaining to the order that has completed. Use the following keys:
string id the Order Id
string email_id optional (kind of) the Email Id of the subscriber we should attach this order to (see the "mc_eid" query string variable a campaign passes) - either this or <strong>email</strong> is required. If both are provided, email_id takes precedence
string email optional (kind of) the Email Address we should attach this order to - either this or <strong>email_id</strong> is required. If both are provided, email_id takes precedence
double total The Order Total (ie, the full amount the customer ends up paying)
string order_date optional the date of the order - if this is not provided, we will default the date to now
double shipping optional the total paid for Shipping Fees
double tax optional the total tax paid
string store_id a unique id for the store sending the order in (20 bytes max)
string store_name optional a "nice" name for the store - typically the base web address (ie, "store.mailchimp.com"). We will automatically update this if it changes (based on store_id)
string campaign_id optional the Campaign Id to track this order with (see the "mc_cid" query string variable a campaign passes)
array items the individual line items for an order using these keys:
<div style="padding-left:30px"><table>
int line_num optional the line number of the item on the order. We will generate these if they are not passed
int product_id the store's internal Id for the product. Lines that do no contain this will be skipped
string sku optional the store's internal SKU for the product. (max 30 bytes)
string product_name the product name for the product_id associated with this item. We will auto update these as they change (based on product_id)
int category_id the store's internal Id for the (main) category associated with this product. Our testing has found this to be a "best guess" scenario
string category_name the category name for the category_id this product is in. Our testing has found this to be a "best guess" scenario. Our plugins walk the category heirarchy up and send "Root - SubCat1 - SubCat4", etc.
double qty optional the quantity of the item ordered - defaults to 1
double cost optional the cost of a single item (ie, not the extended cost of the line) - defaults to 0
</table></div>
* @return bool true if the data is saved, otherwise an error is thrown.
*/
function ecommOrderAdd($order) {
$params = array();
$params["order"] = $order;
return $this->callServer("ecommOrderAdd", $params);
}
/**
* Delete Ecommerce Order Information used for segmentation. This will generally be used by ecommerce package plugins
* <a href="/plugins/ecomm360.phtml">that we provide</a> or by 3rd part system developers.
* @section Ecommerce
*
* @param string $store_id the store id the order belongs to
* @param string $order_id the order id (generated by the store) to delete
* @return bool true if an order is deleted, otherwise an error is thrown.
*/
function ecommOrderDel($store_id, $order_id) {
$params = array();
$params["store_id"] = $store_id;
$params["order_id"] = $order_id;
return $this->callServer("ecommOrderDel", $params);
}
/**
* Retrieve all List Ids a member is subscribed to.
*
* @section Helper
*
* @param string $email_address the email address to check OR the email "id" returned from listMemberInfo, Webhooks, and Campaigns
* @return array An array of list_ids the member is subscribed to.
*/
function listsForEmail($email_address) {
$params = array();
$params["email_address"] = $email_address;
return $this->callServer("listsForEmail", $params);
}
/**
* Retrieve all Campaigns Ids a member was sent
*
* @section Helper
*
* @param string $email_address the email address to unsubscribe OR the email "id" returned from listMemberInfo, Webhooks, and Campaigns
* @param array $options optional extra options to modify the returned data.
string list_id optional A list_id to limit the campaigns to
bool verbose optional Whether or not to return verbose data (beta - this will change the return format into something undocumented, but consistent). defaults to false
* @return array An array of campaign_ids the member received
*/
function campaignsForEmail($email_address, $options=NULL) {
$params = array();
$params["email_address"] = $email_address;
$params["options"] = $options;
return $this->callServer("campaignsForEmail", $params);
}
/**
* Return the current Chimp Chatter messages for an account.
*
* @section Helper
*
* @return array An array of chatter messages and properties
string message The chatter message
string type The type of the message - one of lists:new-subscriber, lists:unsubscribes, lists:profile-updates, campaigns:facebook-likes, campaigns:facebook-comments, campaigns:forward-to-friend, lists:imports, or campaigns:inbox-inspections
string url a url into the web app that the message could link to
string list_id the list_id a message relates to, if applicable
string campaign_id the list_id a message relates to, if applicable
string update_time The date/time the message was last updated
*/
function chimpChatter() {
$params = array();
return $this->callServer("chimpChatter", $params);
}
/**
* Search account wide or on a specific list using the specified query terms
*
* @section Helper
*
* @param string $query terms to search on, <a href="http://kb.mailchimp.com/article/i-cant-find-a-recipient-on-my-list" target="_blank">just like you do in the app</a>
* @param string $id optional the list id to limit the search to. Get by calling lists()
* @param int offset optional the paging offset to use if more than 100 records match
* @return array An array of both exact matches and partial matches over a full search
array exact_matches
int total total members matching
array members each entry will match the data format for a single member as returned by listMemberInfo()
array full_search
int total total members matching
array members each entry will match the data format for a single member as returned by listMemberInfo()
*/
function searchMembers($query, $id=NULL, $offset=0) {
$params = array();
$params["query"] = $query;
$params["id"] = $id;
$params["offset"] = $offset;
return $this->callServer("searchMembers", $params);
}
/**
* Search all campaigns for the specified query terms
*
* @section Helper
*
* @param string $query terms to search on
* @param int offset optional the paging offset to use if more than 100 records match
* @param string snip_start optional by default clear text is returned. To have the match highlighted with something (like a strong HTML tag), <strong>both</strong> this and "snip_end" must be passed. You're on your own to not break the tags - 25 character max.
* @param string snip_end optional see "snip_start" above.
* @return array An array containing the total matches and current results
int total total campaigns matching
array results matching campaigns and snippets
string snippet the matching snippet for the campaign
array campaign the matching campaign's details - will return same data as single campaign from campaigns()
*/
function searchCampaigns($query, $offset=0, $snip_start=NULL, $snip_end=NULL) {
$params = array();
$params["query"] = $query;
$params["offset"] = $offset;
$params["snip_start"] = $snip_start;
$params["snip_end"] = $snip_end;
return $this->callServer("searchCampaigns", $params);
}
/**
* Retrieve a list of all MailChimp API Keys for this User
*
* @section Security Related
* @example xml-rpc_apikeyAdd.php
* @example mcapi_apikeyAdd.php
*
* @param string $username Your MailChimp user name
* @param string $password Your MailChimp password
* @param boolean $expired optional - whether or not to include expired keys, defaults to false
* @return array an array of API keys including:
string apikey The api key that can be used
string created_at The date the key was created
string expired_at The date the key was expired
*/
function apikeys($username, $password, $expired=false) {
$params = array();
$params["username"] = $username;
$params["password"] = $password;
$params["expired"] = $expired;
return $this->callServer("apikeys", $params);
}
/**
* Add an API Key to your account. We will generate a new key for you and return it.
*
* @section Security Related
* @example xml-rpc_apikeyAdd.php
*
* @param string $username Your MailChimp user name
* @param string $password Your MailChimp password
* @return string a new API Key that can be immediately used.
*/
function apikeyAdd($username, $password) {
$params = array();
$params["username"] = $username;
$params["password"] = $password;
return $this->callServer("apikeyAdd", $params);
}
/**
* Expire a Specific API Key. Note that if you expire all of your keys, just visit <a href="http://admin.mailchimp.com/account/api" target="_blank">your API dashboard</a>
* to create a new one. If you are trying to shut off access to your account for an old developer, change your
* MailChimp password, then expire all of the keys they had access to. Note that this takes effect immediately, so make
* sure you replace the keys in any working application before expiring them! Consider yourself warned...
*
* @section Security Related
* @example mcapi_apikeyExpire.php
* @example xml-rpc_apikeyExpire.php
*
* @param string $username Your MailChimp user name
* @param string $password Your MailChimp password
* @return boolean true if it worked, otherwise an error is thrown.
*/
function apikeyExpire($username, $password) {
$params = array();
$params["username"] = $username;
$params["password"] = $password;
return $this->callServer("apikeyExpire", $params);
}
/**
* "Ping" the MailChimp API - a simple method you can call that will return a constant value as long as everything is good. Note
* than unlike most all of our methods, we don't throw an Exception if we are having issues. You will simply receive a different
* string back that will explain our view on what is going on.
*
* @section Helper
* @example xml-rpc_ping.php
*
* @return string returns "Everything's Chimpy!" if everything is chimpy, otherwise returns an error message
*/
function ping() {
$params = array();
return $this->callServer("ping", $params);
}
/**
* Register a mobile device
*
* @section Mobile
*
* @param string $mobile_key a valid key identifying your mobile application.
* @param array $details the details for the device registration
* @return array the method completion status
string status The status (success) of the call if it completed. Otherwise an error is thrown.
*/
function deviceRegister($mobile_key, $details) {
$params = array();
$params["mobile_key"] = $mobile_key;
$params["details"] = $details;
return $this->callServer("deviceRegister", $params);
}
/**
* Unregister a mobile device
*
* @section Mobile
*
* @param string $mobile_key a valid key identifying your mobile application.
* @param string $device_id the device id used for the device registration
* @return array the method completion status
string status The status (success) of the call if it completed. Otherwise an error is thrown.
*/
function deviceUnregister($mobile_key, $device_id) {
$params = array();
$params["mobile_key"] = $mobile_key;
$params["device_id"] = $device_id;
return $this->callServer("deviceUnregister", $params);
}
/**
* Add Golden Monkey(s)
*
* @section Golden Monkeys
*
* @param string $id the list id to connect to. Get by calling lists()
* @param array $email_address an array of email addresses (max 50) to attempt to flag as Golden Monkeys
* @return array an array of API keys including:
int success The number of successful adds
int errors The number of unsuccessful adds
array data details on the errors which occurred
string email_address the email address which errored out
string error an error message explaining the error
*/
function gmonkeyAdd($id, $email_address) {
$params = array();
$params["id"] = $id;
$params["email_address"] = $email_address;
return $this->callServer("gmonkeyAdd", $params);
}
/**
* Remove Golden Monkey(s)
*
* @section Golden Monkeys
*
* @param string $id the list id to connect to. Get by calling lists()
* @param array $email_address an array of email addresses (max 50) to attempt to remove Golden Monkey status from.
* @return array an array of API keys including:
int success The number of successful removals
int errors The number of unsuccessful removals
array data details on the errors which occurred
string email_address the email address which errored out
string error an error message explaining the error
*/
function gmonkeyDel($id, $email_address) {
$params = array();
$params["id"] = $id;
$params["email_address"] = $email_address;
return $this->callServer("gmonkeyDel", $params);
}
/**
* Retrieve all Golden Monkey(s) for an account
*
* @section Golden Monkeys
*
* @return array an array for each Golden Monkey, including:
string list_id The id of the List the Member appears on
string list_name The name of the List the Member appears on
string email The email address of the member
string fname IF a FNAME merge field exists on the list, that value for the member
string lname IF a LNAME merge field exists on the list, that value for the member
int member_rating the rating of the subscriber. This will be 1 - 5 as described <a href="http://eepurl.com/f-2P" target="_blank">here</a>
string member_since the datetime the member was added and/or confirmed
*/
function gmonkeyMembers() {
$params = array();
return $this->callServer("gmonkeyMembers", $params);
}
/**
* Retrieve all Activity (opens/clicks) for Golden Monkeys over the past 10 days
*
* @section Golden Monkeys
*
* @return array an array for each Golden Monkey, including:
string action The action taken - either "open" or "click"
string timestamp The datetime the action occurred
string url IF the action is a click, the url that was clicked
string unique_id The campaign_id of the List the Member appears on
string title The campaign title
string list_name The name of the List the Member appears on
string email The email address of the member
string fname IF a FNAME merge field exists on the list, that value for the member
string lname IF a LNAME merge field exists on the list, that value for the member
int member_rating the rating of the subscriber. This will be 1 - 5 as described <a href="http://eepurl.com/f-2P" target="_blank">here</a>
string member_since the datetime the member was added and/or confirmed
array geo the geographic information if we have it. including:
string latitude the latitude
string longitude the longitude
string gmtoff GMT offset
string dstoff GMT offset during daylight savings (if DST not observered, will be same as gmtoff
string timezone the timezone we've place them in
string cc 2 digit ISO-3166 country code
string region generally state, province, or similar
*/
function gmonkeyActivity() {
$params = array();
return $this->callServer("gmonkeyActivity", $params);
}
/**
* Internal function - proxy method for certain XML-RPC calls | DO NOT CALL
* @param mixed Method to call, with any parameters to pass along
* @return mixed the result of the call
*/
function callMethod() {
$params = array();
return $this->callServer("callMethod", $params);
}
/**
* Actually connect to the server and call the requested methods, parsing the result
* You should never have to call this function manually
*/
function callServer($method, $params) {
$dc = "us1";
if (strstr($this->api_key,"-")){
list($key, $dc) = explode("-",$this->api_key,2);
if (!$dc) $dc = "us1";
}
$host = $dc.".".$this->apiUrl["host"];
$params["apikey"] = $this->api_key;
$this->errorMessage = "";
$this->errorCode = "";
$sep_changed = false;
//sigh, apparently some distribs change this to &amp; by default
if (ini_get("arg_separator.output")!="&"){
$sep_changed = true;
$orig_sep = ini_get("arg_separator.output");
ini_set("arg_separator.output", "&");
}
$post_vars = http_build_query($params);
if ($sep_changed){
ini_set("arg_separator.output", $orig_sep);
}
$payload = "POST " . $this->apiUrl["path"] . "?" . $this->apiUrl["query"] . "&method=" . $method . " HTTP/1.0\r\n";
$payload .= "Host: " . $host . "\r\n";
$payload .= "User-Agent: MCAPI/" . $this->version ."\r\n";
$payload .= "Content-type: application/x-www-form-urlencoded\r\n";
$payload .= "Content-length: " . strlen($post_vars) . "\r\n";
$payload .= "Connection: close \r\n\r\n";
$payload .= $post_vars;
ob_start();
if ($this->secure){
$sock = fsockopen("ssl://".$host, 443, $errno, $errstr, 30);
} else {
$sock = fsockopen($host, 80, $errno, $errstr, 30);
}
if(!$sock) {
$this->errorMessage = "Could not connect (ERR $errno: $errstr)";
$this->errorCode = "-99";
ob_end_clean();
return false;
}
$response = "";
fwrite($sock, $payload);
stream_set_timeout($sock, $this->timeout);
$info = stream_get_meta_data($sock);
while ((!feof($sock)) && (!$info["timed_out"])) {
$response .= fread($sock, $this->chunkSize);
$info = stream_get_meta_data($sock);
}
fclose($sock);
ob_end_clean();
if ($info["timed_out"]) {
$this->errorMessage = "Could not read response (timed out)";
$this->errorCode = -98;
return false;
}
list($headers, $response) = explode("\r\n\r\n", $response, 2);
$headers = explode("\r\n", $headers);
$errored = false;
foreach($headers as $h){
if (substr($h,0,26)==="X-MailChimp-API-Error-Code"){
$errored = true;
$error_code = trim(substr($h,27));
break;
}
}
if(ini_get("magic_quotes_runtime")) $response = stripslashes($response);
$serial = unserialize($response);
if($response && $serial === false) {
$response = array("error" => "Bad Response. Got This: " . $response, "code" => "-99");
} else {
$response = $serial;
}
if($errored && is_array($response) && isset($response["error"])) {
$this->errorMessage = $response["error"];
$this->errorCode = $response["code"];
return false;
} elseif($errored){
$this->errorMessage = "No error message was found";
$this->errorCode = $error_code;
return false;
}
return $response;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment