Use Case 1
E-commerce — Order notifications
Problem
Confirmation emails have a 20% open rate. SMS is expensive. You want to inform customers without paying a fortune.
Solution
Shopify webhook → n8n → MsgFlash → WhatsApp
```javascript
{
"to": "{{$json.customer.phone}}",
"type": "text",
"message": "✅ Order #{{$json.order_number}} confirmed !\n\n📦 Delivery expected: {{$json.delivery_date}}\n🚚 Tracking: {{$json.tracking_url}}\n\nQuestions? Reply to this message.",
"instanceId": "shopify-prod"
}
```Typical result
~95% open rate, low cost, fast setup.
Limits
- No native product catalog
- No in-chat payment
- Customer opt-in required