spikepl
Eledittingent Beliped
- Local time
- Today, 22:53
- Joined
- Nov 3, 2010
- Messages
- 6,142
I want to send SMS from my Access 2007 db.
Voipbuster.com (and the entire bunch of related sites, like eg. voipcheap.com tha I am using) allows sending of messages as follows:
Using HTML SMSlink
You can also send text messages (SMS) without using our software or accessing the website. Use the following link and fill in the desired data:
https://www.voipcheap.com/myaccount/sendsms.php?username=xxxxxxxxxx &password=xxxxxxxxxx&from=xxxxxxxxxx&to=xxxxxxxxxx&text=xxxxxxxxxx
Explanation of the variables:
After creating the link in a text editor you can copy it into your internet browser's address bar:
Than just hit the Enter button and you will get a notification if the text message (SMS) was sent.
How can I call the above from within VBA, so that I don't get to see a browser opening, and also can pick-up the notification f the success (or failure). The message it comes back with in the open browser (I tested it) is:
"1 1 success"
Voipbuster.com (and the entire bunch of related sites, like eg. voipcheap.com tha I am using) allows sending of messages as follows:
Using HTML SMSlink
You can also send text messages (SMS) without using our software or accessing the website. Use the following link and fill in the desired data:
https://www.voipcheap.com/myaccount/sendsms.php?username=xxxxxxxxxx &password=xxxxxxxxxx&from=xxxxxxxxxx&to=xxxxxxxxxx&text=xxxxxxxxxx
Explanation of the variables:
- username: your VoipCheap username
- password: your VoipCheap password
- from: your username or your verified phone number. Always use international format for the number starting with +, for instance +491701234567
- to: the number you wish to send the sms to. Always use international format starting with +, for instance +491701234567
- text: the message you want to send
After creating the link in a text editor you can copy it into your internet browser's address bar:

Than just hit the Enter button and you will get a notification if the text message (SMS) was sent.
How can I call the above from within VBA, so that I don't get to see a browser opening, and also can pick-up the notification f the success (or failure). The message it comes back with in the open browser (I tested it) is:
"1 1 success"