sendRichText
Send a rich text message.
Parameters
The identifier of a chat to send the message to.
The message’s rich text.
Whether to send the message in a silent way without making a sound on the recipients’ clients.
Whether to protect the contents of the message from copying and forwarding.
Information on what the message is replying to.
The identifier of a thread to send the message to.
The identifier of the direct messages topic that is being replied to.
The identifier of a chat to send the message on behalf of. User-only.
The identifier of a message effect to be attached to the message.
If specified, the message will be scheduled to be sent at that date. User-only.
The identifier of a business connection to perform the action on. Bot-only.
Whether the message is a broadcast that is going to be paid for. Bot-only.
The reply markup of the message. Bot-only.
Result
The sent rich text message.
Syntax
// Required parameters only.
await client.sendRichText(chatId, richText);
// Required parameters + optional parameters.
// Any of the optional parameters can be omitted.
await client.sendRichText(chatId, richText, {
isRtl,
isAutomaticLinkDetectionDisabled,
isSilent,
isContentProtected,
replyTo,
messageThreadId,
directMessagesTopicId,
sendAs,
effectId,
sendAt,
businessConnectionId,
isPaidBroadcast,
replyMarkup,
});