Need to Send SMS using Mobile
Hi All,
I need to send SMS from my application through a mobile device, The mobile wants to connected with the system, and i need to give the info in the Application like SMS message, Contact No and all when i Click the send buttond in my apllication the SMS wants to send the corresponding contact number.
If you have any idea to access mobile device and send SMS through it let me have the same.......
Thanks....
Re: Need to Send SMS using Mobile
Try something like:-
Code:
Dim sms = New SMSMessage()
Dim recip As New recipient("Pete", "12345 67890")
sms.to.add(Recip)
sms.body = "This is an auto generated SMS message"
sms.requestdeliveryreport = True
sms.send()
The code above is untested :)
Re: Need to Send SMS using Mobile
Hi, Thanks for your replay... before to check this code tel me is there need any interface to connect the mobile with VB Application. Because i need to send the SMS from the Application by using the database contacts list and some other data through the mobile, How can i connect the device to the VbApplication.
and tel me also to save the replied SMS from the User End, i need to save the users reply SMS also. Is it possible to receive SMS through the VB Application.
If you have any idea regarding this let me have the same as detailed one...
Thanks again
Re: Need to Send SMS using Mobile
HI,
use the pocketoutlook namespace - I think that is what you are asking.
You can get contacts etc from there.
Pete