Productivity & chat

Microsoft Teams

Chat/collab in M365.

Email capabilities

  • Own email API
  • Accepts inbound
  • Sends notifications
  • Webhooks

Connection methods

  • API
  • Email-to-channel

Microsoft Teams is the M365 chat and collaboration platform. Channels have email addresses (post emails to a channel) and it integrates via the Graph API and Power Automate.

Connect Microsoft Teams to MailKite

Post MailKite inbound email to a Teams channel via its channel email address.

Receive email into Microsoft Teams 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 Microsoft Teams: 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
Email tools

Commonly paired with Microsoft Teams

Connect Microsoft Teams to MailKite today

Point a domain, set one SMTP endpoint, send your first email in minutes. Unlimited domains, no credit card.