Muhsin Keloth
35d0a7f1a7
feat: Add liquid template support for WhatsApp template parameters (#12227)
Extends liquid template processing to WhatsApp `template_params`,
allowing dynamic variable substitution in template parameter values.
Users can now use liquid variables in WhatsApp template parameters:
```
{
"template_params": {
"name": "greet",
"category": "MARKETING",
"language": "en",
"processed_params": {
"body": {
"customer_name": "{{contact.name}}",
"customer_email": "{{contact.email | default: 'no-email@example.com'}}"
}
}
}
}
```
When the message is saved, {{contact.name}} gets replaced with the
actual contact name.
Supported Variables
- {{contact.name}}, {{contact.email}}, {{contact.phone_number}}
- {{agent.name}}, {{agent.first_name}}
- {{account.name}}, {{inbox.name}}
- {{conversation.display_id}}
- Custom attributes: {{contact.custom_attribute.key_name}}
- Liquid filters: {{ contact.email | default: "fallback@example.com" }}
2025-08-21 16:44:51 +05:30
..
2025-08-13 20:53:31 +05:30
2025-08-21 16:44:51 +05:30
2025-07-01 16:49:26 +05:30
2020-03-11 00:02:15 +05:30
2025-08-11 21:44:38 -07:00
2025-08-18 19:15:21 -07:00
2020-03-11 00:02:15 +05:30
2025-04-16 18:02:49 +05:30
2024-04-04 21:16:49 +05:30
2025-06-03 12:01:17 +05:30
2025-08-20 20:23:42 +02:00
2025-08-12 19:26:58 -07:00
2025-07-16 09:57:35 +05:30
2025-07-16 09:04:02 +05:30
2024-02-07 13:36:04 +04:00
2023-10-20 13:52:30 +05:30
2023-11-06 20:24:30 -08:00
2025-07-23 17:07:02 +04:00
2023-02-15 16:33:31 -08:00
2025-06-27 10:48:07 +05:30
2024-02-07 13:36:04 +04:00
2025-03-03 16:38:22 +05:30
2023-10-27 10:45:48 -07:00
2024-01-18 17:48:30 +05:30
2023-10-03 22:18:57 -07:00
2025-05-21 19:40:07 +05:30
2022-05-16 13:59:59 +05:30
2025-08-18 19:15:21 -07:00
2023-08-15 19:55:19 -07:00
2025-08-18 19:15:21 -07:00
2025-05-21 19:40:07 +05:30
2020-06-12 23:12:47 +05:30
2022-03-24 15:38:28 +05:30
2020-09-26 02:32:34 +05:30
2023-06-25 18:49:49 +05:30
2025-04-02 20:26:55 -07:00
2022-08-10 13:46:46 +02:00
2025-08-05 13:17:06 +05:30
2025-01-14 16:15:47 -08:00
2021-07-28 19:36:51 +05:30
2024-03-07 11:13:01 +05:30
2025-08-20 20:23:42 +02:00
2022-01-11 19:00:00 -08:00
2021-11-18 10:32:29 +05:30
2025-07-24 13:09:06 +04:00
2022-07-04 20:29:44 +05:30
2023-06-12 18:23:42 +05:30
2022-02-15 12:10:53 +05:30
2023-08-15 19:55:19 -07:00
2025-02-20 21:28:38 -08:00
2024-02-07 13:36:04 +04:00
2025-05-21 19:40:07 +05:30
2025-05-08 17:28:35 -07:00
2022-10-12 14:55:59 -07:00