Skip to content

Instantly share code, notes, and snippets.

@BadgerCode
Last active September 4, 2015 14:24
Show Gist options
  • Save BadgerCode/26adce48243b274cabe4 to your computer and use it in GitHub Desktop.
Save BadgerCode/26adce48243b274cabe4 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