Hi,
I have a PHP script that supposed to send one SMS to entered MSISDN (Mobile) number without waiting for reply or receiving something back. It’s just one shot. I know that SMPP is required to connect to SMSC server so I asked my ISP and they gave me SMPP v3.4 account with below details: System ID Password System type Short code Port IP address How can I send the SMS with the details provided via PHP ? I want it to be very simple with no much SS7 thing. The entered mobile number is stored in $mobile and the body is in $body
<? $mobile = xxxxxxxx; $body = Hello world; //connect to SMSC server via SMPP // send SMS to $mobile containing $body as a message //end connection ?>
Need help..