forward_messages()

async Client.forward_messages()

Forward messages of any kind.

Usable by Users Bots
Parameters:
  • chat_id (int | str) – Unique identifier (int) or username (str) of the target chat. For your personal cloud (Saved Messages) you can simply use “me” or “self”. For a contact that exists in your Telegram address book you can use his phone number (str).

  • from_chat_id (int | str) – Unique identifier (int) or username (str) of the source chat where the original message was sent. For your personal cloud (Saved Messages) you can simply use “me” or “self”. For a contact that exists in your Telegram address book you can use his phone number (str).

  • message_ids (int | Iterable of int) – An iterable of message identifiers in the chat specified in from_chat_id or a single message id.

  • disable_notification (bool, optional) – Sends the message silently. Users will receive a notification with no sound.

  • schedule_date (datetime, optional) – Date when the message will be automatically sent.

  • protect_content (bool, optional) – Protects the contents of the sent message from forwarding and saving.

  • video_start_timestamp (int, optional) – Video startpoint, in seconds.

  • message_thread_id (int, optional) – Unique identifier of a message thread to which the message belongs. For supergroups only.

  • hide_sender_name (bool, optional) – If True, the original author of the message will not be shown.

  • hide_captions (bool, optional) – If True, the original media captions will be removed.

  • background (bool, optional) – If True, the message will be sent in background.

  • effect (int, optional) – Unique identifier of the effect to apply to the message.

  • send_as (int | str, optional) – Unique identifier (int) or username (str) of the chat or user to send the message on behalf of.

  • schedule_repeat_period (int, optional) – Period in seconds after which the message will be automatically resent.

  • allow_paid_broadcast (bool, optional) – If True, you will be allowed to send up to 1000 messages per second. Ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot’s balance. For bots only.

  • paid_message_star_count (int, optional) – The number of Telegram Stars the user agreed to pay to send the messages.

  • direct_messages_topic_id (int, optional) – Unique identifier of the direct messages topic to forward into.

  • with_my_score (bool, optional) – Include the sender’s game score when forwarding a game message.

Returns:

Message | List of Message – In case message_ids was not a list, a single message is returned, otherwise a list of messages is returned.

Example

# Forward a single message
await app.forward_messages(to_chat, from_chat, 123)

# Forward multiple messages at once
await app.forward_messages(to_chat, from_chat, [1, 2, 3])