Last active
November 4, 2015 10:39
-
-
Save EsendexDev/807a3ab4715df103fbc7 to your computer and use it in GitHub Desktop.
Creating and scheduling single SMS messages using the Esendex .Net SDK for Visual Basic. Full details here: http://developers.esendex.com/
This file contains 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 accountReference = "EX0000123" | |
Dim messagingService = New MessagingService("Username", "Password") | |
Dim singleMessage = New SmsMessage("447123456789", "Message Body", accountReference) | |
'Schedules a message to be sent on 31/10/2015 at 15:22 | |
messagingService.SendScheduledMessage(singleMessage, New System.DateTime(2015, 10, 31, 15, 22, 0)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment