-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathTemplate.Create.php
More file actions
31 lines (20 loc) · 941 Bytes
/
Copy pathTemplate.Create.php
File metadata and controls
31 lines (20 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
ini_set ('display_errors', 1);
error_reporting (E_ALL);
require_once('CMBase.php');
//-----------------------------INPUT PARAMS---------------------------------------
$apikey = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
$client_id = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
$template_name = 'Test Template Name';
$html_url = "http://notarealdomain.com/templates/test/index.html";
$zip_url = "http://notarealdomain.com/templates/test/images.zip";
$screenshot_url = "http://notarealdomain.com/templates/test/screenshot.jpg";
//-------------------------------------------------------------------------------
$cm = new CampaignMonitor($apikey);
//Optional statement to include debugging information in the result
$cm->debug_level = 1;
//This is the actual call to the method
$result = $cm->templateCreate($client_id, $template_name, $html_url, $zip_url, $screenshot_url);
echo '<br><br>';
print_r($result);
?>