Can someone provides with the tutorial on how to send sms text messages to mobile phone with 11-digit phone number and not 10-digit phone number using any free gateway?
Or is there any way I can develop my own using php?
Thank you.
Can someone provides with the tutorial on how to send sms text messages to mobile phone with 11-digit phone number and not 10-digit phone number using any free gateway?
Or is there any way I can develop my own using php?
Thank you.
You need to have an SMS API Provider to achieve what you are trying to do. The API Provider even gives you a readymade PHP code for making the calls to their API.
Also,
Have a look at TextMagic and there is a wrapper available here
Something like this
$api = new TextMagicAPI(array(
"username" => "your_user_name",
"password" => "your_API_password",
));
$text = "Hello world!";
$phones = array(9991234567);
$is_unicode = true;
$api->send($text, $phones, $is_unicode)