Hi all,
I have php script like this which use to send sms. Now i want to send sms from outbox table.
I have no idea ho to retrieve records from table… phone number and send message.
Can any one help me.
thanks a lot in advance.
<?php
ini_set("soap.wsdl_cache_enabled", 0);
$url = 'http://cbs.zong.com.pk/ReachCWSv2/CorporateSmsV2.svc?wsdl';
$client = new SoapClient($url, array("trace" => 1, "exception" => 0));
$resultBulkSMS = $client->BulkSmsv2(
array('objBulkSms' =>
array( 'LoginId'=> '', //here type your account name
'LoginPassword'=>'', //here type your password
'Mask'=>'KPS', //here set allowed mask against your account or you will get invalid mask
'Message'=>'Happy',
'UniCode'=>'0',
'CampaignName'=>uniqid(), // Any random name or type uniqid() to generate random number, you can also specify campaign name here if want to send no to any existing campaign, numberCSV parameter will be ignored
'CampaignDate'=>'5/02/2022 04:00:00 pm', // data from where sms will start sending, if not sure type current date in m/d/y hh:mm:ss tt format.
'ShortCodePrefered'=>'n',
'NumberCsv'=>'phone number'
)));
echo "<pre>";
echo "<br>REQUEST:\n" . htmlentities($client->__getLastRequest()) . "\n";
print_r($resultBulkSMS);
?>