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-04-29 15:42:15 -07:00
2025-08-11 14:16:48 -07:00
2025-03-31 17:21:32 -07:00
2025-08-14 19:07:20 +05:30
2025-07-01 09:43:44 +05:30
2025-08-12 18:53:19 +05:30
2025-08-14 19:07:28 +05:30
2025-02-27 17:05:33 -08:00
2025-07-01 09:43:44 +05:30
2025-07-01 09:43:44 +05:30
2025-08-19 15:42:01 +05:30
2025-08-29 16:13:25 +05:30
2025-08-14 19:07:20 +05:30
2025-08-27 15:12:48 +05:30
2024-12-03 21:29:47 -08:00
2025-05-12 11:49:23 -07:00
2025-07-23 13:56:17 +05:30
2025-07-30 19:34:27 +05:30
2025-03-18 13:17:42 -07:00
2025-08-14 19:07:20 +05:30
2024-12-10 11:53:24 +05:30
2025-08-12 12:05:17 +05:30
2025-08-07 09:50:24 +05:30
2025-08-11 15:47:17 +05:30
2025-07-01 09:43:44 +05:30
2025-07-01 09:43:44 +05:30
2025-01-16 15:27:23 +05:30
2025-08-25 16:13:44 +05:30
2025-08-29 16:13:25 +05:30
2025-07-01 09:43:44 +05:30
2025-05-16 16:14:00 +05:30
2025-05-06 12:44:23 +05:30
2025-08-18 21:40:13 +05:30
2024-10-16 17:53:46 -07:00
2025-07-23 13:56:17 +05:30
2025-07-01 09:43:44 +05:30
2025-08-11 14:16:48 -07:00
2025-07-01 09:43:44 +05:30
2025-08-26 15:20:53 +05:30
2025-02-27 17:05:33 -08:00
2025-07-01 09:43:44 +05:30
2025-05-29 12:35:10 +05:30
2025-05-29 12:35:10 +05:30
2025-05-12 11:49:23 -07:00