Inbound email processing

Inbound email, parsed and delivered

We handle the mail server, spam filtering, and parsing — you get clean JSON at your webhook.

100 emails/month free — no credit card

GDPR compliant 100% EU-hosted
Inbound emails
returns@
Customer returns
support@
Auto-ticketing
invoices@
Smart filing
EmailConnect.eu logo
Parse · Route · Deliver
Structured JSON + Webhooks
Your endpoints
Returns API
Labels generated
Issue tracker
Tickets created
Doc storage
Filed & organized
Webhook payload

Pristine data, every field accounted for

No guesswork, no half-parsed HTML. Every email becomes a structured JSON payload with sender info, content in multiple formats, attachments, spam scoring, and much more.

POST /your-webhook — 200 OK
{
  "message": {
    "sender": {
      "name": "Alice Martin",
      "email": "alice@acme.com"
    },
    "recipient": "invoices@yourcompany.com",
    "subject": "Invoice #1042 — February 2026",
    "content": {
      "text": "Hi, please find the invoice attached...",
      "html": "<p>Hi, please find the invoice...</p>",
      "markdown": "Hi, please find the invoice attached...",
      "links": [
        { "url": "https://acme.com/pay/1042", "text": "Pay now" }
      ]
    },
    "attachments": [
      {
        "filename": "invoice-1042.pdf",
        "contentType": "application/pdf",
        "size": 48210,
        "downloadUrl": "https://files.emailconnect.eu/d/..."
      }
    ]
  },
  "spam": {
    "isSpam": false,
    "score": 0.2,
    "authentication": {
      "dkim": { "result": "pass" },
      "spf": { "result": "pass" },
      "dmarc": { "result": "pass" }
    }
  },
  "integrity": {
    "signature": "sha256=9f86d08..."
  }
}
Three content formats

Every email body delivered as plain text, raw HTML, and cleaned Markdown. Use whichever fits your pipeline.

Attachments, handled

Small text files inline as base64. Larger files offloaded to EU-hosted S3 with direct download URLs. Up to 10 MB.

Verified at every layer

DKIM, SPF, and DMARC results included so you can trust or reject based on authentication. Spam score helps you filter.

HMAC-signed delivery

Every webhook is signed with your secret key. Verify the signature to confirm it came from us, not a third party.

Build your own payloadComing soon

Pick exactly which fields you need. Strip what you don't. Per-alias payload configuration for complete control.

How it works

From mailbox to webhook in milliseconds

Every email passes through the same pipeline: receive, verify, parse, deliver. You configure the endpoint — we handle everything in between.

Email arrives
SMTP received on EU infrastructure
Spam filtered
Score calculated, threats blocked
Authenticated
DKIM, SPF, DMARC verified
Parsed to JSON
Body, links, attachments extracted
Webhook delivered
HMAC-signed POST to your endpoint
Each alias, a different endpoint

support@ routes to your ticketing system. invoices@ hits your accounting API. leads@ feeds your CRM. One domain, unlimited workflows.

Interactive demo

Watch email become data

Generate a test address, send an email, and watch the webhook payload appear instantly.

Instant processing
We don't spam
100% EU data residency
Integration

If it can receive a POST, it works

Webhook handlers in any language, no-code platforms, or direct API access. Pick whichever fits your stack.

// Express webhook handler
import express from 'express'
import crypto from 'crypto'

app.post('/webhook', (req, res) => {
  // Verify HMAC signature
  const signature = req.headers['x-emailconnect-signature']
  const expected = crypto
    .createHmac('sha256', process.env.WEBHOOK_SECRET)
    .update(JSON.stringify(req.body))
    .digest('hex')

  if (signature !== expected) return res.status(401).end()

  const { message, spam } = req.body
  console.log(`From: ${message.sender.email}`)
  console.log(`Subject: ${message.subject}`)

  res.status(200).json({ received: true })
})
Testimonials

Trusted by teams across Europe

From e-commerce to public sector — teams rely on EmailConnect for secure, predictable email automation.

Our philosophy

We deliver your data. You decide what happens next.

No AI. No opinions. Just pristine, verified email data at your endpoint — so you can build the logic that matters to your business.

Read our vision

100 emails/month free — no credit card