Created
November 6, 2013 11:59
-
-
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/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $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