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 : 3.144.6.9


Current Path : /var/www/html/sms/
Upload File :
Current File : /var/www/html/sms/cron_send_sms_interana.php

<?php
//lib16107 lib16103

ini_set('display_errors', 'on');
include("sendsmsapi.php");
ini_set('memory_limit','900M');
ini_set('max_execution_time',0);

$univcode = trim($_GET['funivcode']);
$univcode = '042';	
if($univcode == '')
{
	die();
}




	$username = 'logisyhttp';
	$password = 'Logis986';
	$from = 'UNISOL';
	$category = 'bulk';

	//pg test
	//$to = "919741089633,918277684424,919844020272,919845532688,919480278729,919886494428,919900120447,919986554632";

	//PHD
	//$to = "919741089633,918277684424,919844020272,919845532688,919480278729,919449259058,919986554632";

	//Arun and Prashant, mohan, ramesh, mahesh
    //$to = "919741089633,918277684424,919845532688,919844020272,919986554632";
    
    // BNU : Arun and Prashant, mohan, ramesh, mahesh, VC, RE, FO 
	$to = "919741089633,918277684424,919845532688,919844020272,919986554632,919880066509,919449234437,919449819738";
    
	//Arun and Prashant, mohan, ramesh, mahesh
	//$to = "919741089633,918277684424";
    $text = "Message from BNU : Admission Statistics, Total Amission : 25441; Admission Approved : 24963; Admission Approval Pending : 478.";
	$smsresp = sendsmaapi($username,$password,$from,$to,$text,$category);
	echo $smsresp;





?>