Telegram Bot API library for WordPress.
composer require wpsocio/wptelegram-bot-apirequire_once __DIR__ . '/autoload.php';
$bot_token  = 'YOUR BOT TOKEN HERE';
$bot_api = new \WPTelegram\BotAPI\API( $bot_token );
$bot_api->sendMessage( [
    'chat_id' => 123456789,
    'text'    => 'Hello World',
] );
$bot_api->sendPhoto( [
    'chat_id' => 123456789,
    'photo'   => 'https://domain.com/path/to/photo.jpg',
] );PHP >= 8.0WP >= 6.4