Skip to content

Instantly share code, notes, and snippets.

@BadgerCode
Created September 4, 2015 14:13
Show Gist options
  • Save BadgerCode/ccc57ba111db693703e7 to your computer and use it in GitHub Desktop.
Save BadgerCode/ccc57ba111db693703e7 to your computer and use it in GitHub Desktop.
Creating and sending single voice 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 VoiceMessage("447123456789", "Message Body", accountReference)
messagingService.SendMessage(singleMessage)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment