View Source ExTDLib.Method.ForwardMessages (ExTDLib v0.0.4)

Forwards previously sent messages. Returns the forwarded messages in the same order as the message identifiers passed in message_ids. If a message can't be forwarded, null will be returned instead of the message. Returns object_ptr<Messages>.

NameTypeDescription
chat_idstringIdentifier of the chat to which to forward messages.
message_thread_idstringIf not 0, a message thread identifier in which the message will be sent; for forum threads only.
from_chat_idstringIdentifier of the chat from which to forward messages.
message_idsstringIdentifiers of the messages to forward. Message identifiers must be in a strictly increasing order. At most 100 messages can be forwarded simultaneously. A message can be forwarded only if message.can_be_forwarded.
optionsmessageSendOptionsOptions to be used to send the messages; pass null to use default options.
send_copyboolPass true to copy content of the messages without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local.
remove_captionboolPass true to remove media captions of message copies. Ignored if send_copy is false.

More details on telegram's documentation.