Для отправки сообщения в телеграм через php можно воспользоватся готовым скриптом.
Для работы скрипта потребуются Chat ID и Bot Token.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<?php $chatIDs = array('00000000', '111111111'); $botToken = '342844119:AAHXaO-D-XoCD-ZCVPdu0IbE9apIdfuRIRxk987765' $text = str_replace('<p>', '', $text); $text = str_replace('<i>', '', $text); $text = str_replace('</p>', '%0A', $text); $text = str_replace('<br>', '%0A', $text); $text = str_replace('</br>', '%0A', $text); $text = str_replace('=', '%3D', $text); $text = str_replace('+', '%2B', $text); foreach ($chatIDs as $chatID) { file_get_contents('https://api.telegram.org/bot'.$botToken.'/sendMessage?disable_web_page_preview=true&chat_id='.$chatID.'&text='.$text.'&parse_mode=html'); } ?> |