Process of sending SMS
Video
To send SMS messages from EarthSMS applications, the application on the webserver will pass these parameters through the URL to the MySql Database.
URL:
“http://earthsms.net/sms/EarthsmsSendSMSAPI.php?number=MobileNumber&
text=Message&username=LoginName&password=LoginPassword&from=FromInfo”
* username: Sender’s Login Name
* password: Sender’s Login Password
* from: Sender’s Info
* number: Recipient’s Mobile Number
* text: Text from the user of EarthSMS
For Example:
“http://earthsms.net/sms/EarthsmsSendSMSAPI.php?number=923002342332&text=hello world&username=abc@abc.com&password=123456&from=ABC”
After receiving these parameters from the MySQL database, the SMS Gateway Server sends the message to the recipient by using GSM Modem attached to the server. |