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