Reputation: 55
I send it to core of telegram but my bot do not send me the message with parse_mode=>'HTML'
:
$parameters = array('chat_id' => $chat_id, parse_mode => 'HTML');
$url = '<br><br><a href="https://t.me/' . $us['result']['username'] . '/">anchor text</a>';
$response .= $url;
$parameters += array('text' => $response);
but it work without parse_mode=>'HTML'
Upvotes: 1
Views: 3494
Reputation: 55
telegram do not support <br>
tag in html elements!
it will working with delete that! I used enter
instnce of <br>
!
Upvotes: 2