send_message
Send text messages to Telegram channels using specified parse modes like HTML or Markdown for automated bot communication and content distribution.
Instructions
Send a text message to the Telegram channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parse_mode | No | Parse mode (HTML, Markdown, or MarkdownV2) | |
text | Yes | Message text to send |
Input Schema (JSON Schema)
{
"properties": {
"parse_mode": {
"description": "Parse mode (HTML, Markdown, or MarkdownV2)",
"enum": [
"HTML",
"Markdown",
"MarkdownV2"
],
"type": "string"
},
"text": {
"description": "Message text to send",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}