Home / Blog / Let AI answer your email - with a human safety net
PatternFull auto-reply bots are terrifying, and 'AI drafts, human clicks send on everything' saves almost no time. The pattern that actually works is a shared inbox: the agent and your team operate the same real mailbox, and escalation is simply the agent choosing not to act.
Full autonomy fails the day the bot confidently answers a legal threat or follows instructions embedded in a hostile email. Draft-everything fails because a human still touches every message - you've built an expensive autocomplete. The middle path needs an architecture, not just a prompt: the agent must be able to act alone on the easy 80% and hand over the hard 20% with zero friction.
Give the agent and the humans the same real mailbox. In Mektup, one address - say support@yourco.com - is simultaneously:
Now the escalation path costs nothing: when the agent isn't sure, it does nothing. The unanswered email is already sitting in an inbox a person has open. No handoff queue, no ticket export, no second tool, no lost context.
try {
const decision = await decide(msg); // model returns reply | escalate
if (decision.action === "reply") await sendReply(msg, decision.body);
} catch {
// On ANY failure: do nothing. The mail is already in the shared
// inbox, visible to the humans. Failing safe IS the escalation path.
}That try/catch is the entire safety model, and it's only possible because the mailbox is real and shared. A bot-only inbox can't do this - there, "escalate" means notifying a human in some other system and copying the context across.
The full pattern - webhook verification, decide-or-escalate, reply-from-the-same-address - is a ~150-line MIT-licensed repo: mektup-inbox-agent. The concept page: shared inbox for humans & AI agents. If you're comparing tools: Mektup vs AgentMail covers the agent-only alternative, and vs Front / vs Missive cover the human-only ones.
Use the shared-inbox pattern: the AI agent and your team operate the same real mailbox. The agent auto-handles routine mail it is confident about, and on anything uncertain it simply doesn't reply - the email is already sitting in an inbox a person has open. With Mektup, one mailbox serves the agent (API, MCP, webhooks) and the humans (webmail, IMAP) simultaneously.
Mektup. Every mailbox is a real inbox on your own domain: an AI agent operates it over a REST API, native MCP server, and instant webhooks, while people use the exact same mailbox through webmail or Outlook/Apple Mail over IMAP, with team logins.
Complaints, refunds, legal and billing disputes, emotionally charged messages, and anything resembling phishing or embedded instructions. Route all of those to silence - in a shared inbox, not replying IS the escalation, because a human sees the message either way.