Exemplo n.º 1
0
 public function synsendNow($shortCode, $sendTo, $body)
 {
     $this->body = $body;
     $this->recipients = (array) $recipients;
     // Build the reporting keys, used for cross referencing DRs
     $this->reportingkey1 = time();
     $this->reportingkey2 = md5(uniqid() . serialize($this->recipients));
     // Send this message to the outbound sms class to be sent.
     $sender = new Application_Model_Smsoutbound($this);
     $sender->synsend($shortCode, $sendTo, $body);
 }