> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jelou.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Text

> Sends simple text messages to the user

With the **Text** node you send a text message to the user and the flow continues immediately. It is the most basic node for communicating with the user.

## Configuration

* **Content**: Write the text of the message you want to send to the user.

## Variables in messages

You can insert variables to dynamically personalize the message:

```
Hello {{$user.names}}, the status of your order is: {{$memory.order.status}}
```

## Limits by channel

| Channel       | Maximum characters |
| :------------ | :----------------- |
| WhatsApp      | 4,096              |
| Facebook      | 2,000              |
| Instagram     | 1,000              |
| Web / Twitter | 4,096              |
| Omnichannel   | 2,000              |

<Note>
  The Text node does not wait for the user's response. If you need to ask a question and capture the response, use the [Question](/guides/nodos/pregunta) node.
</Note>
