skip to Main Content

I want to send a message in telegram like table structure if I use below HTML, it is not working

<tr>
    <th>Title1</th>
    <th>Title2</th>
</tr>
<tr>
<td>123
<td>abd</td>
</tr>
</table>```

2

Answers


  1. Telegram bot api does not support these tags. Supported tags

    You can use spaces or create image.

    Login or Signup to reply.
  2. You can’t send these messages in Telegram that you used on your phone. You have to register an account with an API key to create a bot.

    Telegram bot does support HTML tags, but as @PavloMaistruk said, you might have to check out what kind of tags are supported by reading the documentation.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search