Muhsin Keloth
99997a701a
feat: Add twilio content templates (#12277)
Implements comprehensive Twilio WhatsApp content template support (Phase
1) enabling text, media, and quick reply templates with proper parameter
conversion, sync capabilities, and feature flag protection.
### Features Implemented
**Template Types Supported**
- Basic Text Templates: Simple text with variables ({{1}}, {{2}})
- Media Templates: Image/Video/Document templates with text variables
- Quick Reply Templates: Interactive button templates
- Phase 2 (Future): List Picker, Call-to-Action, Catalog, Carousel,
Authentication templates
**Template Synchronization**
- API Endpoint: POST
/api/v1/accounts/{account_id}/inboxes/{inbox_id}/sync_templates
- Background Job: Channels::Twilio::TemplatesSyncJob
- Storage: JSONB format in channel_twilio_sms.content_templates
- Auto-categorization: UTILITY, MARKETING, AUTHENTICATION categories
### Template Examples Tested
#### Text template
```
{ "name": "greet", "language": "en" }
```
#### Template with variables
```
{ "name": "order_status", "parameters": [{"type": "body", "parameters": [{"text": "John"}]}] }
```
#### Media template with image
```
{ "name": "product_showcase", "parameters": [
{"type": "header", "parameters": [{"image": {"link": "image.jpg"}}]},
{"type": "body", "parameters": [{"text": "iPhone"}, {"text": "$999"}]}
]}
```
#### Preview
<img width="1362" height="1058" alt="CleanShot 2025-08-26 at 10 01
51@2x"
src="https://github.com/user-attachments/assets/cb280cea-08c3-44ca-8025-58a96cb3a451"
/>
<img width="1308" height="1246" alt="CleanShot 2025-08-26 at 10 02
02@2x"
src="https://github.com/user-attachments/assets/9ea8537a-61e9-40f5-844f-eaad337e1ddd"
/>
#### User guide
https://www.chatwoot.com/hc/user-guide/articles/1756195741-twilio-content-templates
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
2025-08-29 16:13:25 +05:30
..
2025-05-20 20:45:39 -07:00
2024-06-06 18:49:53 -07:00
2025-07-16 09:57:35 +05:30
2025-03-24 16:04:49 -07:00
2025-03-28 14:07:03 -07:00
2025-05-20 19:22:17 -07:00
2025-05-28 09:46:59 +05:30
2024-02-21 18:51:00 +05:30
2021-06-08 22:45:01 +05:30
2025-06-11 23:39:47 +05:30
2024-10-22 23:18:30 -07:00
2024-06-11 14:22:03 +05:30
2024-06-11 14:22:03 +05:30
2025-07-28 13:49:13 +04:00
2025-03-28 12:18:39 +05:30
2021-09-21 10:16:32 +05:30
2025-07-02 12:33:29 +05:30
2025-06-13 11:57:11 +05:30
2025-06-11 13:16:44 -04:00
2025-06-24 19:00:20 -07:00
2025-04-02 20:26:55 -07:00
2025-08-05 13:17:06 +05:30
2025-07-02 19:57:59 +05:30
2024-06-11 14:22:03 +05:30
2025-08-13 13:32:22 +05:30
2025-08-11 12:03:48 +05:30
2025-06-16 20:35:23 -07:00
2025-08-29 16:13:25 +05:30
2025-06-11 23:39:47 +05:30
2025-08-13 20:53:31 +05:30
2023-06-19 16:11:19 +05:30
2025-05-23 12:58:13 +05:30
2025-07-02 10:01:50 +05:30
2024-06-11 14:22:03 +05:30
2025-06-11 22:45:32 +05:30
2025-03-03 16:38:22 +05:30
2023-03-14 09:09:57 -07:00
2025-08-28 10:10:28 +05:30