Skip to content

Instantly share code, notes, and snippets.

@EsendexDev
Last active November 4, 2015 10:39
Show Gist options
  • Save EsendexDev/807a3ab4715df103fbc7 to your computer and use it in GitHub Desktop.
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/
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