WORKFLOW
KMBC // Automation Walkthrough

Automate It: n8n vs Zapier vs Make

Same workflow. Three tools. Pick your path and build a lead intake pipeline that catches form submissions, enriches data with AI, sends notifications, and logs everything. Step by step, entirely in the browser.

WebhookAI / LLMGoogle SheetsEmailNo-Code
What We Are Building

The Full Pipeline at a Glance

Live Preview
Form SubmitWebhook
{0_0}
Enrich Data{0_0} AI
Send AlertEmail
Log to SheetGoogle Sheets
Step 1: Form Submit

Form comes in → AI enriches it → you get notified → it is logged. All automatic.

Choose Your Tool

Pick a Tool, Follow the Path

The Tool

What is n8n?

n8n (pronounced "n-eight-n") is an open-source workflow automation tool. You connect apps by dragging nodes onto a visual canvas and drawing connections. You can self-host it, write custom code in JavaScript or Python, and never worry about per-task pricing.

Think of each node as a single task: "receive a webhook," "call an API," "send an email." Wire them together and you have an automated workflow that runs 24/7. You can run it entirely on your own machine with Docker -- or use their free cloud plan.

400+
Built-in integrations
Free
Self-hosted forever
Open
Source code on GitHub
The Problem

Manual Workflow vs. Automated

Here is what happens today when someone fills out your contact form -- and what changes when automation takes over.

1

Someone fills out a contact form

MANUAL~5 min

You check your inbox, read the message, decide if it is worth following up on.

AUTOMATEDInstant

The tool catches the form submission instantly via a webhook trigger.

2

Look up who this person is

MANUAL~10 min

You Google their name, check LinkedIn, figure out their company and role.

AUTOMATED~3 sec

An AI step takes the name and email and returns a short summary of who they are.

3

Send a personalized reply

MANUAL~8 min

You open your email, write a custom message referencing their company and request.

AUTOMATED~5 sec

AI drafts a personalized email and the tool sends it through an email action.

4

Log it somewhere

MANUAL~5 min

You open Google Sheets, find the right tab, type in their info, copy-paste details.

AUTOMATEDInstant

A new row is appended to your spreadsheet with all the data automatically.

{0_0}
Time Saved Per Lead

Manual: ~28 minutes per lead. Automated: ~8 seconds. At 10 leads per day, you save 4.5 hours daily.

Build It

Build Your n8n Workflow in 8 Steps

Follow along from signup to a live, running automation. Everything happens in n8n's web UI -- no local setup required.

1

Sign up and open the canvas

2

Add a Webhook trigger

3

Send test data to the webhook

4

Add an AI node to enrich the lead

5

Add an email notification node

6

Add a Google Sheets node to log the lead

7

Test the full workflow

8

Activate and go live

Test Data

Sample Leads to Test Your Workflow

Use these fake leads to test your workflow end-to-end. Click a lead, copy the curl command, and replace YOUR_WEBHOOK_URL with the URL from n8n. Works with all three tools.

Marcus Johnson
TechStartup Inc
Sarah Chen
DesignCo
James Williams
RetailBrand
Priya Patel
FintechLab
Alex Rivera
Creative Studio
Terminal — curl command
curl -X POST \
  YOUR_WEBHOOK_URL \
  -H "Content-Type: application/json" \
  -d '{
  "name": "Marcus Johnson",
  "email": "marcus@techstartup.io",
  "company": "TechStartup Inc",
  "message": "Interested in your AI consulting services. We are a 15-person startup building developer tools."
}'
Heads Up

These are fake leads with made-up email addresses. Do not send real emails to these addresses. When testing the email step, send to your own address.

Level Up

What to Add Next

Easy

Slack Notification

Add a Slack step after email. Get lead alerts in a dedicated channel so your whole team sees them instantly.

Medium

Lead Scoring

Add a second AI step that scores the lead 1-10 based on company size and message intent. Route hot leads differently.

Medium

CRM Integration

Connect HubSpot, Pipedrive, or Notion. Auto-create a contact record and deal for every new lead.

Advanced

Multi-Step Follow-Up

Use a delay/wait step to send a follow-up email 3 days later if the lead has not responded.

Comparison

n8n vs. Zapier vs. Make

Featuren8nZapierMake
Self-hostableYesNoNo
Open sourceYes (fair-code)NoNo
Free tier5 workflows / 2.5k runs100 tasks/mo1,000 ops/mo
Custom codeJS + PythonLimitedLimited
AI / LLM nodesBuilt-inYesYes
Visual builderYesYesYes
Pricing modelPer workflow (or free)Per taskPer operation
Best forDevs & power usersBeginners & small teamsVisual thinkers & agencies
FAQ

Frequently Asked Questions

Which tool should I start with?

Is it free to follow this walkthrough?

Do I need to know how to code?

Can I run this without an AI API key?

What if my form tool does not support webhooks?

Can I switch tools later?

How is n8n different from Zapier and Make?