emailGetDetail
public static array emailGetDetail(string token, string emailID)
Get all the details for given Email ID.
Section
Email Campaign Related Methods

Parameters
string tokenA valid token for your account. To generate a token, use the login method.
string emailIDThe email ID to delete. To get all the emails, use the emailGet method.

Returns
arrayReturns an array with the details.

Return Structure
integer sequenceThe sequence number of the record
string idThe ID of the email campaign.
string emailNameName of the email campaign
string fromNameName displayed as "from" in your contact's in-box
string fromEmailThe from email that appears in the recipients inbox
string replyEmailReplies are forwarded to this address
string subjectThe subject line of the email
integer toListIDThe ID of the target contact list
string toListNameThe name of the target contact list
bool isSegmentReturns true if a segment has been used as the target.
string templateContentThe HTML content of the email
string templateTextThe Text version of the email
string us_addressThe Address line in case of US-based sender
string us_cityThe City in case of US-based sender
string us_stateThe State in case of US-based sender
string us_zipThe Zip Code in case of US-based sender
string intl_addressThe Address line in case of Outside US-based sender
string permissionReminderMessageThe Permission reminder which appears on top of the email.
string googleAnalyticsCampaignThe Google Analytics campaign name.
bool webpageVersionReturns true if a link to view a web version of the email has been set
string statusThe status of the email. Can be 'Draft', 'Scheduled', 'Sent', 'Incomplete'
string createdDateThe date on which the list was created
string modifiedDateThe date on which the list was last updated
string versionVersion of the Email


Examples
download example code
xmlrpc_emailGetDetail.php


  1. <?php
  2. /**
  3. This Example shows how to authenticate a user using XML-RPC.
  4. Note that we are using the PEAR XML-RPC client and recommend others do as well.
  5. **/
  6. require_once 'XML/RPC2/Client.php';
  7. require_once 'inc/config.php';
  8. $client = XML_RPC2_Client::create($apiURL);
  9. $token = $client->login($apiLogin, $apiPassword);
  10. /**
  11. Fetch the latest email, so we can retrieve the email ID.
  12. **/
  13. $emailList = $client->emailGet($token, "", 1, 1, "", "");
  14. $emailID = $emailList[0]['id'];
  15.  
  16. $emailData = $client->emailGetDetail($token, $emailID);
  17. print_r($emailData);
  18. ?>