Use this PHP cURL snippet in your School Portal to send auto-messages via this middleman.
$api_url = 'https://lightslategrey-eland-779756.hostingersite.com/api/send';
$payload = json_encode([
'number' => $phone_variable,
'message' => 'Fees Updated Successfully!'
]);
$ch = curl_init($api_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $payload);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Content-Type: application/json',
'Content-Length: ' . strlen($payload)
]);
$result = curl_exec($ch);
curl_close($ch);