Eleirbag89 / TelegramBotPHP

A very simple PHP Telegram Bot API for sending messages.
http://eleirbag89.github.io/TelegramBotPHP
MIT License
800 stars 340 forks source link

How to format a link like an html <a> tag? #238

Closed FilippoCalabrese closed 3 years ago

FilippoCalabrese commented 3 years ago

Blonday everyone! I'm trying to use the library to post a series of links on a channel. I wish I could send the links by showing only the title in the chat but I can't find a solution

JOSDC01 commented 3 years ago

You must pass the property "parse_mode"

example: < a href="http://www.example.com/">inline URL < a href="tg://user?id=123456789">inline mention of a user

$msg= " < a href="tg://user?id=123456789 ">inline mention of a user or title "; $content= array('chat_id' => $chat_id, 'text' => $msg, 'parse_mode' => 'HTML'); $telegram->sendMessage($content);