Block 1 - Webhook
- Type / Role
- n8n-nodes-base.webhook - webhook
- Config choices
- Version 2.1
This workflow is provided as-is. Please review and test before using in production.
Customer Onboarding Email Verification Automated email verification and welcome email workflow that validates new user signups, prevents fake emails, and creates a seamless onboarding experience wi...
n8n-nodes-base.webhook, n8n-nodes-base.code, n8n-nodes-verifiemail.verifiemail, n8n-nodes-base.if, n8n-nodes-base.slack, n8n-nodes-base.googlesheets, n8n-nodes-base.gmail, n8n-nodes-base.stopanderror
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Jitesh Dugar.
Original n8n.io sourceAutomated email verification and welcome email workflow that validates new user signups, prevents fake emails, and creates a seamless onboarding experience with real-time team notifications.
✅ Real-time email validation with VerifiEmail API
✅ Automatic data sanitization (lowercase, trim whitespace)
✅ Smart typo detection and correction suggestions
✅ Disposable email domain blocking
✅ Professional HTML welcome emails with responsive design
✅ Automatic duplicate prevention in Google Sheets logging
✅ Real-time Slack notifications for sales/marketing teams
✅ MX record and SMTP deliverability checks
Create Google Sheet
Connect Credentials
Customize Email Template
yourapp.com/dashboard → Your actual dashboard URLyourapp.com/getting-started → Your docs/guide URLyourapp.com/support → Your support page URL#667eea to #764ba2 (line 37)Configure Slack Channel
Test Workflow
curl -X POST [webhook-url] -H "Content-Type: application/json" -d '{"name":"Test User","email":"[email protected]"}'Integrate with Your Signup Form
name and email fieldsSend POST request to webhook with this JSON:
{
"name": "John Doe",
"email": "[email protected]"
}
The workflow handles various input formats (nested in body field, query params, etc.) and sanitizes automatically.
After execution, you'll get:
Edit the "Personalize Welcome Email" node HTML:
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%)<img> tag in header sectionIn "Prepare Correction Email" node, add more typo patterns:
const commonTypos = {
'gmial': 'gmail',
'gmai': 'gmail',
// Add your custom patterns:
'yourdomain': 'yourcorrectdomain'
}
Replace "Stop and Error" node with Gmail "Send Email" node:
{{ $json.email }} as recipient{{ $json.emailBody }} as messageAfter "Log Valid Users" node, add:
Add Google Sheets node after "Prepare Correction Email":
"undefined" error in Data Sanitization:
name and email fields are presentAll emails marked as invalid:
Welcome emails not sending:
No Slack notifications:
Duplicate entries in Google Sheets:
High validation failure rate:
For high-volume signups (>100/day):
Weekly:
Monthly:
For issues or questions, visit the n8n community forum.
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.
| Workflow | Automated email verification & onboarding with VerifiEmail, Gmail & Slack |
|---|---|
| Complexity | advanced |
| Nodes | 21 |
| Categories | Lead Nurturing |
| Author | Jitesh Dugar |
| Published | 01 Oct 2025 |
Use the JSON export at /data/workflows/9150/9150.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
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.
Customer Onboarding Email Verification Automated email verification and welcome email workflow that validates new user signups, prevents fake emails, and creates a seamless onboarding experience wi...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
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 use case.