<?php
$api = new MCAPI(API_KEY, ''));
$segment_opts = array('match' => 'all', 'conditions' => array(
array(
'field' => 'merge4',
'op' => 'eq',
'value' => ...
)
);
$opts['folder_id'] = ...
$opts['from_email'] = '...';
$opts['from_name'] = '...';
$opts['inline_css'] = true;
$opts['generate_text'] = true;
$opts['title'] = 'Title';
$opts['list_id'] = ...
$opts['subject'] = 'Subject';
$opts['tracking'] = array('opens' => true, 'html_clicks' => true, 'text_clicks' => false);
$opts['authenticate'] = true;
$content = array('html' => $email_body);
$retval = $api->campaignCreate('regular', $opts, $content, $segment_opts);