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
| hola amigos |
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 |