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
..
2024-11-27 20:05:54 -08:00
2025-05-29 14:42:13 +05:30
2025-03-11 14:49:27 -07:00
2025-07-08 12:40:40 +05:30
2025-06-05 15:53:17 -05:00
2025-08-13 12:57:14 +05:30
2024-10-07 11:12:40 -07:00
2025-07-16 09:04:02 +05:30
2024-10-02 00:36:30 -07:00
2025-02-06 14:23:08 +05:30
2025-06-30 14:30:09 +05:30
2025-08-29 16:13:25 +05:30
2024-09-06 13:41:48 +05:30
2025-08-29 16:13:25 +05:30
2025-08-04 15:22:20 -07:00
2023-05-18 22:50:46 +05:30
2024-10-02 00:36:30 -07:00
2024-04-29 14:43:57 +05:30
2023-10-20 13:52:30 +05:30
2025-05-29 12:35:10 +05:30
2025-07-08 12:40:40 +05:30
2025-08-10 17:39:59 -07:00
2025-08-08 01:48:45 +05:30
2025-08-27 11:53:03 +05:30
2025-08-29 16:13:25 +05:30
2025-03-14 14:28:14 +05:30
2025-08-11 13:06:20 +05:30
2024-10-02 00:36:30 -07:00
2024-10-02 00:36:30 -07:00
2025-07-08 12:40:40 +05:30
2025-06-11 14:35:46 +05:30
2023-07-01 07:49:52 +05:30
2025-05-28 13:50:50 +05:30
2023-04-25 22:02:15 -07:00
2025-08-18 21:40:13 +05:30
2024-10-03 11:23:30 +05:30
2024-07-24 16:35:40 -07:00
2024-10-07 11:12:40 -07:00
2020-02-29 17:43:49 +05:30
2025-08-12 18:53:19 +05:30