function CampaignMonitor::campaignGetBounces in Campaign Monitor 6.2
Same name and namespace in other branches
- 5.2 lib/CMBase.php \CampaignMonitor::campaignGetBounces()
- 6.3 lib/CMBase.php \CampaignMonitor::campaignGetBounces()
*
Parameters
int $campaign_id (Optional) A valid Campaign ID to check against. If not given, the default class property is used.: * @return mixed A parsed response from the server, or null if something failed. * @see http://www.campaignmonitor.com/api/Campaign.GetBounces.aspx
File
- lib/
CMBase.php, line 1181
Class
- CampaignMonitor
- The new CampaignMonitor class that now extends from CMBase. This should be backwards compatible with the original (PHP5) version.
Code
function campaignGetBounces($campaign_id = null) {
return $this
->campaignGeneric('GetBounces', $campaign_id);
}