Download the PHP package joesexton00/exacttarget without Composer
On this page you can find all versions of the php package joesexton00/exacttarget. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download joesexton00/exacttarget
More information about joesexton00/exacttarget
Files in joesexton00/exacttarget
Package exacttarget
Short Description Component library for ExactTarget API
License MIT
Homepage https://github.com/joesexton00/exacttarget
Informations about the package exacttarget
ExactTargetComponent
Package: joesexton00\exactTarget
Uses: EtBaseClass.php
Version: 1.1
This is a fork of Micah Breedlove's Exact Target bundle and builds on his work to add Data Extension functionality and a few other features. Much credit is due to him for this bundle!
General
The ExactTarget component is a collection of classes based on the ExactTarget PHP starter kit. The purpose of this library is to spend less time writing Exact Target code and more time working with your application. The EtClient handles all SOAP communication. This class holds several functions (defined below) which allows the EtClient to be self-sufficent on a basic level. ExactTarget API PHP starter kit (available: http://docs.code.exacttarget.com/@api/deki/files/199/=PHP_APIstarterKit-V1.zip Source: http://docs.code.exacttarget.com/020_Web_Service_Guide/API_Starter_Kits)
Usage
The EtClient is the main conduit to the ExactTarget API. All interactions should go through it. Other classes can be used outside the context of the EtClient file.
Each magic function works as Symfony-like magic getters and setters. The create, recall, update, and bundle each execute SOAP calls to preform their intended action.
Example (subscriber):
// instantiates the Client for SOAP Communications
$client = new EtClient($userName,$password);
// Subscriber object is passed the client
$subscriber = new EtSubscriber($client);
$subscriberKey = $emailAddress = "[email protected]";
// Find a subscriber from ExactTarget by subscriber key (email address is
// optional)
$subscriber->find($subscriberKey, $emailAddress);
// Add Subscriber to a specific list (by list id)
$subscriber->addToList("24601");
// Build a new Attribute
$newAttrib = new EtAttribute();
$newAttrib->setName('Metroid Save Code'); // Attribute Name
$newAttrib->setValue("------ ---mE3 l-y000 00y00j"); // Attribute Value
// setAttributes is be used for initially setting attributes on subscriber
$subscriber->setAttributes(array($newAttrib));
// updateAttribute is used for objects which already have attributes
// $subscriber->updateAttribute($newAttrib);
// Update Subscriber record
$subscriber->save();
/* either by the save method on EtSubscriber or
* via the EtClient
* $client->updateSubscriber($subscriber, 'updateOnly');
*/
Example (Triggered Send):
// Initialize EtClient
$client = new EtClient($userName,$password);
// create Triggered Send object giving it access to the EtClient object
$ts = new EtTriggeredSend($client);
// Define which triggered send to use
$ts->useKey("defeatedMotherBrain");
// create Subscriber object giving it access to the EtClient object
$sub = new EtSubscriber($client);
// search for a user by subscriber key [required] and
// email address [optional]
$sub->find("[email protected]","[email protected]");
// define the subscribers the Triggered Send is bound for
$ts->setSubscribers(array($sub));
// execute send
$ts->send();
Example (Data Extension):
// initialize
$this->dataExtension->init();
// retrieve the DE, specify which fields to get
$this->dataExtension->find( array( 'field1', 'field2', 'field3' ) );
// update a DE property using key/value pair
$this->dataExtension->updateProperty( 'key', 'value' );
// persist
$this->dataExtension->save();
EtClient
The bread and butter of this library. The ExactTarget starterKit provides a series of samples leans to a very buck-shot scattered method for use of SOAP calls. This puts all interactions with the SOAP calls in one place.
Functions
There are three (3) function calls built into this client:
- buildTriggeredSend
- sendEmail
- getDefinitionOfObject
The buildTriggeredSend function accepts two (2) arguments the first -- required -- is the triggeredSendKey which is the "External Key" for the specific Triggered Email and can be found in the Web UI under Interactions > Messages > TriggeredSends.
The second -- optional -- is an array of options built as a key-value pair which should correspond with available variables on the EtTriggeredSendDefinition class.
$EtClient->buildTriggeredSend($triggeredSendKey, [$optionalAttributesArray]);
The sendEmail function accepts two (2) required variables the first is an Et object which is valid for sending (e.g. EtTriggeredSend, EtEmail, etc) the second is the SendType the type of the object which should be used for SOAP communications.
$EtClient->sendEmail($EmailableClass, $EmailableClassType);
The getDefinitionOfObject function is a function provided by the Exact Target PHP Starter Kit used for getting the properties of an Exact Target record (think of mysql> DESC