You are here

function CampaignMonitor::templateGetDetail in Campaign Monitor 6.2

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

*

Parameters

string $template_id (TemplateID) ID of the template whose details are being requested: * @see http://www.campaignmonitor.com/api/method/template-getdetail/

File

lib/CMBase.php, line 1509

Class

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

Code

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