MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/allyindian_com/sbltt/application/models/sms.php
<?php


function sms($senderid,$to,$message)
{

$data = 'workingkey=Abac1f63a285ab9dd24e8af435dc393a8&to='.urlencode($to).'&sender='.urlencode($senderid).'&message='.urlencode($message).'';

$ch = curl_init('http://trans.kapsystem.com/api/web2sms.php?'. $data);

//echo 'http://trans.kapsystem.com/api/web2sms.php?'. $data; die;

curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // For HTTPS
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); // For HTTPS
curl_exec($ch);
//$response = curl_exec($ch);
//echo "page return";
curl_close($ch);
}

?>