Hi..anyone here have sms gateway coding (vb.net)for windows application??
i need a free service..meaning i will hope my application can able to send sms to my customer for latest news/promotions. how can i do so?
This you can use. I registered with this outfit and I could buy smses and send sms to any phone through my website. The following code shows the format. It's really simple. Any company you register with will give you the dlls to install on your machines giving you access to their gateways. Best of luck. Get back to me for further questions
'use the intellisoftwares' gateway
'objIntelliSMS = New IntelliSMS
'objIntelliSMS.PrimaryGateway = "https://www.intellisoftware.co.uk"
'objIntelliSMS.BackupGateway = "https://www.intellisoftware2.co.uk"
'objIntelliSMS.Username = "xxxxxxxxxxxxxxx"
'objIntelliSMS.Password = "xxxxxx"
'Try
' objIntelliSMS.SendMsg(strCellFoneNo, "This sms operation is successful", "www.MySite.com")
' lblError.Text = "SMS Sent successfully to " & strCellFoneNo
'Catch Ex As Exception
' lblError.Text = "Error!: SMS could not be sent to " & strCellFoneNo
'Finally
'End Try