Developers >> VB.net Sample script
Online support |
|
|
Skype: sms-warehouse |
|
|
Electronic funds transfer or Paypal (Min 5 Max 500 Euro) Required Paypal authorisation |
|
Sep 9, 2012
SMSwarehouse Inc. wish to notify clients that we received an update from our SMSC partner stating that all mobile numbers in Brazil starting with area code 11 have be added with digit 9 in-between the two digit area code and the current eight digit local numbers.
|
Send SMS sample script using VB.net
Please note that you might have to adjust the script based on your own system. This is just a sample
Download SMS scripts (.zip file)
Imports System.Net.WebClient
Module Sms
Sub Main()
Dim username As String = ""
Dim password As String = ""
Dim send_from As String = ""
Dim send_to As String = ""
Dim message_text As String = ""
Dim wc As New System.Net.WebClient
Dim uri As String = "http://smpp.smswarehouse.com/websms/webmsg?user=
" & username & "&pass=" & _password & "&sid=" & send_from & "&mno=" & send_to
& "&type=1&esm=0&dcs=0&text=" & message_text
Dim body As String = wc.DownloadString(uri)
MsgBox(body, MsgBoxStyle.Information, "HTTP Response")
End Sub
End Module
Step 1. Quick test SMS - Step2. Register test account - Step 3. Buy SMS
Previous page: Send SMS using Python

