n8n For E-commerce
E-commerce operations generate a constant stream of events — new orders, payment confirmations, shipping updates, customer reviews, abandoned carts, and support requests. Automating the workflows that respond to these events with n8n improves customer experience, reduces operational overhead, and enables the personalisation at scale that drives revenue. This guide covers the most valuable n8n e-commerce automation patterns.
Order Processing Automation
The most important e-commerce automation is the post-purchase workflow. Every order should trigger a consistent, well-designed response that confirms the order, sets shipping expectations, and begins the relationship with the customer.
The order automation workflow:
- Shopify Trigger: New order created webhook fires
- n8n enriches the order data: Fetch customer's order history to determine if they're a first-time or returning customer
- Branch by customer type:
- First-time customers: welcome sequence email + order confirmation - Returning customers: VIP acknowledgment + order confirmation
- Create fulfillment task: In operations tool or Airtable
- Update CRM: If HubSpot is connected, log the purchase as a CRM activity
Using Claude in the workflow, the order confirmation email is personalised based on the products ordered — for a customer who bought running shoes, the confirmation includes care and use tips; for electronics, setup tips; for perishables, delivery care instructions.
Abandoned Cart Recovery
Cart abandonment is one of the largest revenue recovery opportunities in e-commerce — 70-80% of carts are abandoned, and recovery sequences convert 5-15% of those.
The recovery workflow:
- Shopify Trigger: Cart abandonment webhook (fires when a user leaves with items in cart)
- Wait 1 hour: Give the customer time to complete the purchase naturally
- Check purchase: If order was completed, stop the workflow
- Send Email 1: Friendly reminder about the items in cart
- Wait 24 hours
- Check again: If purchased, stop
- Send Email 2 (with incentive): Offer a small discount (e.g., 10% off)
- Wait 48 hours
- Check again: Final follow-up or remove from sequence
Claude personalises each email based on the specific items in the cart — making the recovery emails feel relevant rather than generic. Personalised abandoned cart emails convert at higher rates than generic templates.
Customer Review Generation
Product reviews are critical for e-commerce conversion. AI automation can systematically generate review requests at the right time.
The review request workflow:
- Schedule Trigger: Daily at 9 AM
- Shopify Query: Get all orders fulfilled 7 days ago with no review request sent
- Filter: Remove customers who have received a review request in the last 30 days
- For each order: Generate a personalised review request email using Claude, referencing the specific product(s) purchased
- Send via email provider
- Log in Airtable: Track that this customer received a review request (prevents duplicate sends)
The personalisation in review requests ("How are you enjoying your [Product Name]?") significantly improves response rates compared to generic requests.
Product Description Automation
For stores with large catalogs, writing product descriptions manually doesn't scale. Claude can generate high-quality product descriptions from product specifications.
The description workflow:
- Airtable Trigger: New row added to product database with specifications but no description
- Claude Node: Generate a product description from the specifications — including key features, use cases, and a compelling call to action. Style instructions match your brand voice.
- Update Airtable: Write the description back to the product database
- Optional: Shopify Update Product node to write the description directly to the Shopify product
For a catalog of 500 products, this automation processes the entire catalog in a few hours. Ongoing, new products get descriptions immediately when specifications are entered.
Customer Support Integration
E-commerce support has common, predictable patterns: where is my order, how do I return this, why was I charged this amount. n8n can handle these automatically.
Support automation:
- Gmail/Zendesk Trigger: New support email/ticket
- Claude: Classify the issue type — order status, return request, billing, product question, general
- Shopify Lookup (order status branch): Get the order and shipping status
- Generate response: Claude drafts the appropriate response with the actual order data
- Auto-send or queue for review based on issue complexity
Inventory and Reorder Automation
Low stock alerts prevent lost sales. n8n can monitor inventory and automate reorder processes.
Inventory monitoring:
- Schedule Trigger: Every morning
- Shopify Query: Get all products where inventory quantity < reorder threshold
- For each low-stock product: Send an alert to the operations team in Slack with product name, current quantity, and reorder link
- For products below critical threshold: Create a purchase order draft in the procurement system
Recommended Tools
- n8n — E-commerce automation platform
- Shopify — E-commerce platform with strong n8n integration
- Claude API — Personalised email generation and support responses
- Klaviyo — E-commerce email marketing platform
- Airtable — Product database and review tracking
- HubSpot — CRM for customer purchase history
- Twilio — SMS for shipping updates
Related articles
n8n vs Make.com vs Zapier: a 2026 honest comparison
No affiliate fluff — where each tool wins, where it breaks, and what we actually run.
Self-hosting n8n: a production-grade setup guide
Queue mode, workers, backups, and the security defaults you should never skip.
Complete n8n Guide: Everything You Need to Build Powerful Automations
The definitive n8n guide — nodes, credentials, triggers, and production-grade patterns.