使用clickatell网关发送多条消息

时间:2013-08-14 07:54:23

标签: php clickatell

我使用php服务器端连接clickatell消息服务,我使用soap api技术建立连接。它正在工作。但在我的代码中,我可以同时发送一条消息,这是代码:

    function actionSendSMS(){
       $msgModel = new Messages();
      $settModel = new Settings();

       $setRows = $settModel->findAll();
      $usr=$setRows[0]->clickatell_usr;
     $pwdRows = $settModel->findAll();
     $pwd=$pwdRows[0]->clickatell_pwd;


   $api_idRows = $settModel->findAll();

   $api_id=$api_idRows[0]->clickatell_api_id;







    $msgModel->findAllBySql("select * from messages where is_sent=0 and   
    send_date=".date("m/d/Y"));

      $client = new SoapClient("http://api.clickatell.com/soap/webservice.php?WSDL");
      $params = array('api_id' => $api_id,'user'=> $usr,'password'=> $pwd);
      $result = $client->auth($params['api_id'],$params['user'],$params['password']);
      $sessionID = substr($result,3);
      $callback=6;
     // echo $result."<br/>";
     // echo $sessionID;

      $params2 = array('session_id'=>$sessionID, 'api_id' => $api_id,'user'=> 
        $usr,'password'=>$pwd,
      'to'=>array('962xxxxxxx'), 'from'=>"thetester",'text'=>'this is a sample test  
           message','callback'=>$callback);
      $result2 = $client->sendmsg($params2['session_id'],  
           $params['api_id'],$params['user'],$params['password'],
      $params2['to'],$params2['from'],$params2['text'],$params2['callback']);
      print_r( $result2)."<br/>";




    $apimsgid=  substr($result2[0],4);

   $rowsx=Messages::model()->findAllBySql("select * from messages where is_sent=0 and  
     send_date='".date("m/d/Y")."'");



      for($i=0;$i<count($rowsx);$i++)
    {



      $rowsx[$i]->clickatell_id=$apimsgid;

     $rowsx[$i]->save();

       }


        //echo $apimsgid."<br/>";



          if (substr($result2[0], 0,3)==='ERR' && (!(substr($result2[0], 0,2)==='ID'  
          )  ))
      {
          echo 'Connot Routing Message';


      }

....现在你看到这段代码会同时发送一条消息,忘记id,它出于个人目的,现在这项服务我必须修改它,同时发送多条消息,我会给每条消息一个唯一的ID,所以现在我的问题是:有没有人知道是否有服务同时发送多个短信;

在我的代码中我填写一条消息的信息,但我需要一个服务来发送多个短信,是否有任何机构可以给我一个链接到这个服务,我做了很多搜索,但我没有找到答案< / p>

2 个答案:

答案 0 :(得分:0)

你试过吗

$params2 = array('session_id'=>$sessionID, 'api_id' => $api_id,'user'=>        $usr,'password'=>$pwd, 'to'=>array('962xxxxxxx', '962xxxxxxx', '962xxxxxxx'), 'from'=>"thetester",'text'=...

$params2 = array('session_id'=>$sessionID, 'api_id' => $api_id,'user'=>        $usr,'password'=>$pwd, 'to'=>array('962xxxxxxx,962xxxxxxx,962xxxxxxx'), 'from'=>"thetester",'text'=...

答案 1 :(得分:0)

尝试使用startbatch命令同时发送多条消息(它还支持个性化)。但是,它不是基于soap的,它基于http api。