
<?php

$apiKey = urlencode('CAfVzUrX/L4-XWoGLjSJUUUvINd3QwKA6Yv4bKK7r9	');
	$phon_no="9496325190";
	// Message details
	$numbers = array($phon_no);
	$sender = urlencode('SNHLYM');
	
 $message=rawurlencode('Mr/Mrs/Ms.Anoop,you have sucessfully donated Rs.100 to Snehalayam Charitable Trust.Thank you for giving your valuable contribution on this trust.We value your Support.Our Website: www.snehalayam.in');
 
 
	$numbers = implode(',', $recnumb);
 
	// Prepare data for POST request
	$data = array('apikey' => $apiKey, 'numbers' => $numbers, "sender" => $sender, "message" => $message);
 
	// Send the POST request with cURL
	$ch = curl_init('https://api.textlocal.in/send/');
	curl_setopt($ch, CURLOPT_POST, true);
	curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
	$response = curl_exec($ch);
	curl_close($ch);

?>