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