You are here

function CampaignMonitor::templateDelete in Campaign Monitor 6.2

Same name and namespace in other branches
  1. 6.3 lib/CMBase.php \CampaignMonitor::templateDelete()

*

Parameters

string $template_id (TemplateID) ID of the template to be deleted: * @see http://www.campaignmonitor.com/api/method/template-delete/

File

lib/CMBase.php, line 1543

Class

CampaignMonitor
The new CampaignMonitor class that now extends from CMBase. This should be backwards compatible with the original (PHP5) version.

Code

function templateDelete($template_id) {
  return $this
    ->makeCall('Template.Delete', array(
    'params' => array(
      'TemplateID' => $template_id,
    ),
  ));
}