Skip to content

Instantly share code, notes, and snippets.

@EsendexDev
Created November 6, 2013 11:59
Show Gist options
  • Save EsendexDev/7334967 to your computer and use it in GitHub Desktop.
Save EsendexDev/7334967 to your computer and use it in GitHub Desktop.
Tracking the status of messages using the Esendex PHP SDK - Full details here: http://developers.esendex.com/
$authentication = new \Esendex\Authentication\LoginAuthentication(
"EX000000", // Your Esendex account reference
"[email protected]", // Your login email
"password" // Your password
);
$headerService = new \Esendex\MessageHeaderService($authentication);
$message = $headerService->message("messageId");
print_r($message->status());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment