function MCAPI::campaignSendNow in Mailchimp 5
Same name and namespace in other branches
- 5.2 MCAPI.class.php \MCAPI::campaignSendNow()
- 6.2 MCAPI.class.php \MCAPI::campaignSendNow()
- 6 MCAPI.class.php \MCAPI::campaignSendNow()
- 7 MCAPI.class.php \MCAPI::campaignSendNow()
Send a given campaign immediately
Related
Parameters
string $cid the id of the campaign to resume:
Return value
boolean true on success
File
- ./
MCAPI.class.php, line 115
Class
Code
function campaignSendNow($cid) {
$params = array();
$params["cid"] = $cid;
return $this
->callServer("campaignSendNow", $params);
}