Skip to main content

Capture website leads with Slack notifications, Gmail responses & sheets archiving

Workflow preview

Workflow preview
100%
Capture website leads with Slack notifications, Gmail responses & sheets archiving preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

Website Lead Notification System Let's build this simple and high value workflow. Here is a detailed, node by node explanation of how it works and how to set it up in n8n. How It Works This workflo...

Best for

  • Lead Nurturing automation workflows
  • Multimodal AI automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.webhook, n8n-nodes-base.slack, n8n-nodes-base.googlesheets, n8n-nodes-base.gmail, n8n-nodes-base.stickynote

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Marth.

Original n8n.io source

1.1 Workflow description

Title
Capture website leads with Slack notifications, Gmail responses & sheets archiving
Workflow name
Capture website leads with Slack notifications, Gmail responses & sheets archiving

Website Lead Notification System

Let's build this simple and high-value workflow. Here is a detailed, node-by-node explanation of how it works and how to set it up in n8n.


How It Works

This workflow acts as a bridge between your website's contact form and your sales team. It waits for a submission from your website via a Webhook. As soon as a new lead fills out the form, the workflow instantly captures their data and sends a formatted notification to your team's Slack channel. This ensures your team can respond to new leads in real time, without any delays.


Setup Steps

1. Webhooks Trigger: Receive Website Form Submissions
  • Node Type: Webhook Trigger
  • Parameters:
    • HTTP Method: POST
    • Path: new-lead
  • Explanation: This node is the starting point. It creates a unique URL that you will use in your website's form submission settings. When a visitor submits your form, the data is sent to this URL as a POST request, triggering the workflow.
2. Slack: Notify Sales Team
  • Node Type: Slack
  • Credentials: YOUR_SLACK_CREDENTIAL
  • Parameters:
    • Operation: Post Message
    • Channel: YOUR_SALES_CHANNEL_ID (e.g., #sales-leads)
    • Text: `New Website Lead! - Name: {{ $json.name }}
      • Company: {{ $json.company }}
      • Email: {{ $json.email }}
      • Message: {{ $json.message }}`
  • Explanation: This node sends a formatted message to your designated Slack channel. The curly braces {{ }} contain n8n expressions that dynamically pull the data (name, company, email, etc.) from the website form submission.
3. Google Sheets: Archive Lead Data (Optional)
  • Node Type: Google Sheets
  • Credentials: YOUR_GOOGLE_SHEETS_CREDENTIAL
  • Parameters:
    • Operation: Add Row
    • Spreadsheet ID: YOUR_SPREADSHEET_ID
    • Sheet Name: Leads
    • Data:
      • Name: ={{ $json.name }}
      • Email: ={{ $json.email }}
      • Date: ={{ $now }}
  • Explanation: This is an optional but recommended step. This node automatically adds a new row to a Google Sheet, creating a clean, organized archive of all your website leads.
4. Gmail: Send Automatic Confirmation Email (Optional)
  • Node Type: Gmail
  • Credentials: YOUR_GMAIL_CREDENTIAL
  • Parameters:
    • Operation: Send
    • To: ={{ $json.email }}
    • Subject: Thanks for contacting us!
    • Body: Hi {{ $json.name }}, thanks for reaching out. We've received your message and will get back to you shortly.
  • Explanation: This node provides a quick and professional automated response to the new lead, confirming that their message has been received.

Final Step: Activation

  1. After configuring the nodes, click "Save" at the top of the canvas.
  2. Click the "Active" toggle in the top-right corner. The workflow is now live and will listen for new form submissions.
  3. Remember: You need to configure your website's form to send a POST request to the URL from your Webhook Trigger node.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Receive Website Form Submissions

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2

Block 2 - Notify Sales Team

Type / Role
n8n-nodes-base.slack - slack
Config choices
Version 2.3

Block 3 - Archive Lead Data

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.6

Block 4 - Send Automatic Confirmation Email

Type / Role
n8n-nodes-base.gmail - gmail
Config choices
Version 2.1

Block 5 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 6 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Capture website leads with Slack notifications, Gmail responses & sheets archiving
Complexity intermediate
Nodes 6
Categories Lead Nurturing, Multimodal AI
Author Marth
Published 10 Aug 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/7219/7219.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Capture website leads with Slack notifications, Gmail responses & sheets archiving do?

Website Lead Notification System Let's build this simple and high value workflow. Here is a detailed, node by node explanation of how it works and how to set it up in n8n. How It Works This workflo...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Lead Nurturing, Multimodal AI use case.