-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Closed
Description
Description
Hi. It is very strange that the package intended for sending notifications does not have the basic functionality – sending a message to a group topic thread.
see: https://core.telegram.org/bots/api#sendmessage
parameter: message_thread_id
(int)
description: Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
Example
$options = new TelegramOptions()
->messageThreadId($_ENV["TG_THREAD_ID"]) // <== LIKE THIS
->parseMode(TelegramOptions::PARSE_MODE_HTML);
FiberJack