Make

Visual drag-and-drop automation (formerly Integromat).

How MailKite fits

Works with MailKite — send via MailKite SMTP from a Make scenario, or trigger on a MailKite webhook.

Receive email into Make via MailKite

A minimal, copy-paste starter. Swap in your own domain and API key.

webhook.ts
import { verifyWebhook } from "@mailkite/client";

// MailKite POSTs every inbound email at your domain as JSON.
// Point a route at this handler in the MailKite dashboard.
export default async function handler(req: Request) {
const raw = await req.text();
const sig = req.headers.get("x-mailkite-signature") ?? "";

// Reject anything not signed by your webhook secret
const ok = await verifyWebhook(sig, raw, process.env.MK_WEBHOOK_SECRET!);
if (!ok) return new Response("bad signature", { status: 401 });

const email = JSON.parse(raw);
// Route into Make: open a ticket, create a task, store a record
await routeIntoName(email); // email.from · email.subject · email.text

return new Response(JSON.stringify({ ok: true }));
}
Read the inbound webhooks guide

Make (formerly Integromat) is a visual drag-and-drop automation platform with routers, iterators, filters, error handling, and data stores across 1,800+ apps. Strong for complex multi-step workflows with branching.

Key features

Pricing model

Free tier (1,000 ops/mo) + paid

Category

Automation & routing

Workflow tools that route and act on email.

Related

Similar tools

Try MailKite alongside Make.

Point a domain, drop in a webhook URL, and send your first email in minutes. Unlimited domains, no credit card.