AI Email Automation (3 Platforms)
The same AI-powered Gmail automation built three ways — across Make.com, Zapier, and n8n.

Overview
A hands-on automation study: rather than following a single tool tutorial, I solved one real-world problem across three platforms — Make.com, Zapier, and n8n. The workflow automatically categorizes incoming Gmail emails (Sales / Support / Urgent / Spam) and generates context-aware replies using AI (Grok/xAI), with zero manual intervention. Each build follows the same pipeline: a Gmail trigger detects new emails, a filter skips irrelevant ones, Grok categorizes the email type, router/switch logic routes by category, and an AI-generated or template-based auto-reply is sent — backed by a logging and notification layer using Google Sheets and WhatsApp/Twilio. The biggest takeaway: there's no universal best tool. Make.com is visual and flexible with intuitive Router logic; Zapier has the simplest UI but needs Webhooks for custom AI since Grok isn't a native app; n8n offers the most control through its IF/Switch nodes. Debugging real-world API errors — Twilio geo-permissions, module version mismatches, and JSON formatting quirks — proved just as valuable as building the automations themselves.
Tech Stack
Challenges & Solutions
Challenge
Zapier had no native integration for Grok/xAI, blocking custom AI categorization within the flow.
Solution
Used Zapier Webhooks to call the Grok API directly, passing email content and parsing the categorization response back into the workflow.
Challenge
Real-world API failures — Twilio geo-permissions, module version mismatches, and inconsistent JSON formatting — broke automations in ways tutorials never cover.
Solution
Systematically debugged each platform: enabled the right Twilio geo-permissions, pinned module versions, and normalized JSON payloads so the AI responses parsed reliably across all three tools.
Challenge
Needed a fair comparison of Make.com, Zapier, and n8n rather than a surface-level opinion.
Solution
Built the identical pipeline in all three, surfacing each tool's philosophy — Make.com's intuitive Router, Zapier's simple UI with Webhook workarounds, and n8n's deep IF/Switch customization.