You are here

function MCAPI::campaignSendNow in Mailchimp 6

Same name and namespace in other branches
  1. 5.2 MCAPI.class.php \MCAPI::campaignSendNow()
  2. 5 MCAPI.class.php \MCAPI::campaignSendNow()
  3. 6.2 MCAPI.class.php \MCAPI::campaignSendNow()
  4. 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

MCAPI

Code

function campaignSendNow($cid) {
  $params = array();
  $params["cid"] = $cid;
  return $this
    ->callServer("campaignSendNow", $params);
}