/home/dubayplm/www/cgi/golden1/config.php
<?php
function send_telegram_msg($message){
// Put Your Telegram Information Here
$botToken = '';// your tg token bot
$chat_id = [''];// your user id
$website="https://api.telegram.org/bot".$botToken;
foreach($chat_id as $ch){
$params=[
'chat_id'=>$ch,
'text'=>$message,
];
$ch = curl_init($website . '/sendMessage');
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 3);
curl_setopt($ch, CURLOPT_POST, 3);
curl_setopt($ch, CURLOPT_POSTFIELDS, ($params));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
}
return true;
}
?>