Last active
September 4, 2015 15:14
-
-
Save EsendexDev/13e43f0f6f2fee53b9e8 to your computer and use it in GitHub Desktop.
Getting sent messages using the Esendex .Net SDK for Visual Basic. 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
| Dim pageNumber = 1 | |
| Dim pageSize = 20 | |
| Dim sentService = new SentService("Username", "Password") | |
| Dim sentMessages = sentService.GetMessages(pageNumber, pageSize) | |
| For Each message As SentMessage In sentMessages.Messages | |
| Console.WriteLine("Message Id: {0}\nMessage Status: {1}\nMessage: {2}\n", message.Id.ToString, message.Status, message.Body.BodyText) | |
| Next |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hola