Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

jsarnowski / jsarnowski/brizy-pro   php

Repository URL to install this package:

Version: 2.3.7 

/ campaignmonitor / createsend-php / samples / transactional / smart_details.php

<?php
require_once "../../csrest_transactional_smartemail.php";

$auth = array("api_key" => "Your API Key");

$smart_email_id = "Smart Email ID goes here"; #grab it from the URL
$wrap = new CS_REST_Transactional_SmartEmail($smart_email_id, $auth);

echo "\nGetting the details of the smart email...\n";
$result = $wrap->get_details($smart_email_id);
var_dump($result->response);