Last active
September 4, 2015 14:53
-
-
Save EsendexDev/8546318d8124e12cd878 to your computer and use it in GitHub Desktop.
Creating and sending single SMS messages using the Esendex .Net SDK for Visual Basic. Full details here: http://developers.esendex.com/
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 accountReference = "EX0000123" | |
Dim messagingService = New MessagingService("Username", "Password") | |
Dim singleMessage = New SmsMessage("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