Attachment tab
This block supports the following attachment types:
Link
Video
Image
File
Audio

In a single block, you CANNOT combine different types of attachments!
Attachments uploaded to the builder must not exceed 20 MB.
Sending up to 10 attachments of the same type in one block is allowed.
You can also generate an image using the "Generate image" button and send it to your client.

How to send attachments
To send an attachment, create an empty block and open the block editor (right menu).
Important!
The uploaded attachment must not exceed 20 MB. Sending up to 10 attachments of the same type in one block is allowed.
It is not recommended to send a block with multiple attachments in a broadcast to avoid hitting the API limits of different messengers.
DO NOT assign the same name to different attachments within one project!
If you upload a new attachment with the same name as an existing one, the system will deliver the original file. To prevent errors and ensure correct block operation, always assign unique names to your attachments.
Please note!
Telegram specifics:
Buttons will NOT appear when sending more than one attachment in a block.
Exception: If the block’s text exceeds 1024 characters, the message will be split into two — buttons will appear with the text, and attachments will be sent in a separate message.
Markdown and HTML text formatting do not work when sending more than one attachment in a block.
All attachment settings are located within the block settings, accessible by clicking the "Attachment" button.

Let’s take a closer look at the newly appeared buttons for attachment types.
Link
The first button is Link:

Click the button to reveal the attachment settings.
Option A: rnter a URL in the provided field to share a link.
Option B: upload a file; it will be presented to the client as a separate download link.
There are three checkboxes below the URL field:

Click notification: When enabled, the bot will log a user's click by sending a message in the format
link_was_pressed [link1] [link2].

What is this used for?

This event allows you to track which users clicked a link. When the checkbox is enabled, the system sends a callback to the dialog in the format:
link_was_pressed {url}
In this callback, link_was_pressed is a fixed prefix, and {url} is a variable representing the specific URL you configured in the block.

For instance, you can follow up by sending reminders to clients.
You can set your own domain for generating links with click notifications.
To do this, go to your project settings:

Click the “Set custom domain...” button and enter your domain in the modal window:

When click notification is enabled, the link sent to the user will be formatted as follows:
https://{your_domain}/{proxy_id}/s


"Show link preview" checkbox

This generates a rich link preview in the messenger, allowing the user to see a snippet of the file's content (like a title, image, or description) before opening it.
"Image below text" checkbox

Video attachment
Video attachment button

Use this option when sending videos. By default, WhatsApp only displays videos as links.
To display YouTube videos as links in all messengers:
Shorten the URL using any URL shortener, or
Send it as an attachment with click notification enabled.
For large videos stored in external storage, it's better to attach them as links. The block has a direct upload limit of 20 MB for video files.
Please note!
The video is attached in MP4 format.

Image
"Image" button — use it to send the necessary images in the bot.

Like any other attachment, an image can be uploaded directly from your computer or by specifying its URL.
File
File icon — use it to send documents and any other files.

Audio
Audio Icon: use this icon when attaching or sending a file in an audio format (e.g., MP3, WAV).


For Instagram, the file format should be .m4a.
Sending multiple files
To send multiple attachments (videos, files, images, or audio):
Navigate to the "Attachment" section in the block editor.
Select the desired attachment type.
Upload the required files one by one.

In Telegram:
Buttons are disabled when a block contains more than one attachment.
Exception: If the block text exceeds 1024 characters, the message is split. The buttons will be sent with the text, while the attachments are delivered in a separate message.
Markdown and HTML text formatting do not work when sending more than one attachment in a block.
Sending attachments: examples
Let's proceed with practical examples. We will configure the bot to send messages automatically at 2-second intervals.
In each example block, we will include a different type of attachment to demonstrate how they are displayed in Telegram.

The example flow demonstrates different attachment types—file, link, video, image, and audio—sent sequentially with a 2-second delay.

Last updated