File: /home/clientsoftwares/public_html/multi-school.clientsoftwares.com/application/libraries/Msg91.php
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
class Msg91 {
protected $authKey;
protected $senderID;
public function __construct () {
$ci = & get_instance();
if (is_superadmin_loggedin()) {
$branchID = $ci->input->post('branch_id');
} else {
$branchID = get_loggedin_branch_id();
}
$msg91 = $ci->db->get_where('sms_credential', array('sms_api_id' => 3, 'branch_id' => $branchID))->row_array();
$this->authKey = isset($msg91['field_one']) ? $msg91['field_one'] : '';
$this->senderID = isset($msg91['field_two']) ? $msg91['field_two'] : '';
}
public function send($to, $message, $dlt_te_id = '')
{
//Your message to send, Add URL encoding here.
$message = urlencode($message);
//Define route
$route = "4";
//Prepare you post parameters
$postData = array(
"sender" => $this->senderID,
'DLT_TE_ID' => $dlt_te_id,
'route' => $route,
"country" => "91",
"unicode" => 1,
'sms' => array(array('message' => $message, 'to' => array($to))),
);
//API URL
$url = "http://api.msg91.com/api/v2/sendsms";
// init the resource
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode($postData),
CURLOPT_SSL_VERIFYHOST => 0,
CURLOPT_SSL_VERIFYPEER => 0,
CURLOPT_HTTPHEADER => array(
"authkey: $this->authKey",
"content-type: application/json"
),
));
//get response
$response = curl_exec($ch);
$err = curl_error($ch);
curl_close($ch);
if ($err) {
echo "cURL Error #:" . $err;
} else {
$result = json_decode($response);
if ($result->type === "success") {
return true;
} else {
return false;
}
}
}
}