Skip to main content

Route inbound emails by alias with EmailConnect.eu webhooks

Workflow preview

Workflow preview
100%
Route inbound emails by alias with EmailConnect.eu webhooks preview
Open on n8n.io

1. Workflow Overview

Quick overview This workflow receives inbound emails from EmailConnect.eu via an n8n webhook, extracts key message fields, drops spam, and routes emails to different downstream paths based on the r...

Best for

  • Ticket Management automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.set, n8n-nodes-base.if, n8n-nodes-base.switch, n8n-nodes-base.noop

Source and attribution

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

Original n8n.io source

1.1 Workflow description

Title
Route inbound emails by alias with EmailConnect.eu webhooks
Workflow name
Route inbound emails by alias with EmailConnect.eu webhooks

Quick overview

This workflow receives inbound emails from EmailConnect.eu via an n8n webhook, extracts key message fields, drops spam, and routes emails to different downstream paths based on the recipient alias (for example support@ or invoices@).

How it works

  1. Receives a POST webhook from EmailConnect.eu containing a structured JSON payload for an inbound email.
  2. Extracts the sender, recipient, subject, text content, attachments, and spam flag from the payload.
  3. Stops processing for messages marked as spam.
  4. Routes non-spam emails based on whether the recipient address starts with support@, invoices@, or falls back to a catch-all path.
  5. Hands each route off to placeholder steps where you add your own actions, such as creating a support ticket or filing an invoice.

Setup

  1. Publish or activate the workflow and use the webhook Test URL (for testing) or Production URL (for live traffic) as appropriate.
  2. In EmailConnect.eu, create an inbound alias (catch-all) and configure it to forward incoming email to this workflow’s Webhook (Production) URL (from step 1).
  3. Find the verification_token in the webhook's verification payload and enter it in EmailConnect.
  4. Update the routing rules to match your aliases (for example support@ and invoices@) and replace the placeholder actions with your real integrations.
  5. (Optional) If you enable EmailConnect webhook signing, add an HMAC-SHA256 signature verification step using your whsec_ secret and the webhook headers plus raw body.

Requirements

  • Free EmailConnect.eu account (100 emails per month included)

Additional info

This example flow checks against 'contains support@ or invoices@' to support both custom domain aliases ([email protected]) and aliases hosted on user.emailconnect.eu (e.g. [email protected]). Depending on your situation, consider switching to 'starts with support@' or 'contains +support'.

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 - Sticky Note

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

Block 2 - Sticky Note1

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

Block 3 - Sticky Note2

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

Block 4 - Sticky Note3

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

Block 5 - When Email Received

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

Block 6 - Set Email Fields

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 7 - If Not Spam

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

Block 8 - Route by Email Alias

Type / Role
n8n-nodes-base.switch - switch
Config choices
Version 3

Block 9 - Support Ticket Handler

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

Block 10 - Invoice Filing Handler

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

Block 11 - Default Handler

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

3. Summary Table

Workflow Route inbound emails by alias with EmailConnect.eu webhooks
Complexity intermediate
Nodes 11
Categories Ticket Management
Author Xander Groesbeek
Published 01 Jun 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/16044/16044.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 Route inbound emails by alias with EmailConnect.eu webhooks do?

Quick overview This workflow receives inbound emails from EmailConnect.eu via an n8n webhook, extracts key message fields, drops spam, and routes emails to different downstream paths based on the r...

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 Ticket Management use case.