From the blog
How we build, what we learn, what we ship.
Posts about giving AI agents real inboxes, sending and receiving at scale, deliverability, and the systems behind the AgenticEmail API.
You will find hands-on guides to email APIs and webhooks, how to connect email to agent frameworks like LangChain, CrewAI, and the Vercel AI SDK, deliverability deep-dives on SPF, DKIM, and DMARC, and engineering notes on how AgenticEmail handles receiving, encryption, and real-time events under the hood.
How to give a Vercel AI SDK agent its own email inbox
Vercel AI SDK email: give an AI SDK agent a real inbox with AgenticEmail, then wire send and read tools with tool() and zod into generateText.
How to send an encrypted email in Outlook
Send encrypted email in Outlook with S/MIME or Microsoft 365 Message Encryption, what each protects, its limits, and how to encrypt mail from code.
How to encrypt email in Gmail
How Gmail encrypts email, why confidential mode is not encryption, S/MIME vs client-side encryption, what Google can still read, and true end-to-end.
How to give your CrewAI agent its own email inbox
CrewAI email guide: give a CrewAI agent a real inbox with the AgenticEmail Python SDK, wrap send and read as a custom tool, and handle inbound over webhooks.
How to receive OTP and verification codes with an email API
Receive OTP and verification codes programmatically with a real inbox and a webhook, parse the code with a regex, and let an AI agent finish the signup.
Email encryption: how it works and the methods compared
How email encryption works: transport TLS vs end-to-end, S/MIME vs PGP vs modern JOSE, how to encrypt a message, and encryption built for AI agents.
What is a disposable email address?
What a disposable or temporary email address is, how it works, when to use one, the risks, and how developers create real inboxes on demand from code.
MCP email server: give your AI agent email as a tool
An MCP email server lets an AI agent create inboxes, send, read, and reply as native tools. Connect AgenticEmail's hosted MCP email server over Bearer auth.
How we built zero-knowledge, agent-to-agent email encryption
The architecture behind AgenticEmail end-to-end encryption, and the three problems that were harder than the cryptography: the curve that would not run, sender spoofing, and the zero-knowledge tradeoffs.
S/MIME email encryption: how it works and when to use it
What S/MIME is, how X.509 certificates sign and encrypt mail, what it does not protect, S/MIME vs PGP, and a modern JOSE alternative for agent email.
How to give your n8n AI agent an email inbox (n8n email automation)
n8n email automation for AI agents: give your n8n workflow a real inbox and send plus receive mail over REST using the HTTP Request and Webhook nodes.
Email as identity for AI agents
Email as identity for AI agents: why an address is the closest thing to a portable, universal identity online, and makes an agent a first-class participant.
How to give your Claude agent its own email inbox
Give your Claude agent a real email inbox: connect the AgenticEmail hosted MCP server so Claude can create inboxes and send, read, and reply over email.
How to give your LangChain agent its own email inbox
LangChain email guide: give a LangChain agent a real inbox with the AgenticEmail SDK, wrap send and read as tools, and handle inbound mail over webhooks.
Why AI agents need email
Why AI agents need email: it is the internet's universal, async, permissionless identity and communication layer, and agents need an inbox to join it.
What is an AI email agent? How it works and how to build one
An AI email agent reads, triages, drafts, and sends email autonomously from an inbox it controls. Learn how it works and how to build one with real code.
How to send encrypted email (developer guide)
Learn how to send encrypted email: the consumer routes plus a developer guide to end-to-end encrypted, zero-knowledge email between AgenticEmail inboxes.
Encrypted email API: what it means and how to choose one
An encrypted email API protects message content with cryptography, not just TLS. Learn end-to-end vs at-rest, key custody, and opt-in secure email API code.
PGP encryption explained, and a modern alternative for automation
PGP encryption explained: how public keys, keyservers, and the web of trust work, why it never went mainstream, plus a modern JOSE-based alternative to it.
End-to-end encrypted email: how it actually works
End-to-end encrypted email means only the two endpoints hold the keys. The three layers, how the encrypt-to-recipient envelope works, and how agents do it.
Encrypted email for AI agents
Encrypted email for AI agents: opt-in end-to-end encryption with client-held keys, so only the two AgenticEmail inboxes in a thread can read the message.
Zero-knowledge email: what it means and how it works
Zero-knowledge email means the provider never holds your key, so it literally cannot read your mail. How zero-knowledge encryption differs from encryption at rest.
Zoho Mail API guide: OAuth, sending, and reading mailboxes
Working with the Zoho Mail API: OAuth 2.0 setup, accountId discovery, sending messages, reading folders, and the limits to know - plus when a purpose-built email API is simpler.
Postmark API guide: fast transactional email, explained
How the Postmark API works: server tokens, the /email endpoint, message streams, templates, inbound processing - and when Postmark is or isn't the right choice.
The Gmail API: the complete developer guide
Everything about the Gmail API in one place: OAuth setup, scopes, sending, reading, push notifications, quotas, common errors - and when it's the wrong tool.
Gmail API in Python: the practical guide
Use the Gmail API from Python: OAuth setup with google-api-python-client, sending, reading and parsing messages, attachments, and the pitfalls that bite in production.
Temp mail API: create disposable inboxes programmatically
A temp mail API creates disposable email inboxes from code - for OTP testing, signup QA, and agents. Working curl, TS, and Python examples.
Mailgun API guide: sending, receiving, and validation explained
How the Mailgun API works: authentication, sending with the messages endpoint, inbound routes, the email validation API, and where Mailgun fits vs alternatives.
How to Send Email from JavaScript: SMTP, fetch, and the Email API Way
You can't send email from browser JavaScript directly. Here's how to use a send email API in JavaScript, nodemailer over SMTP, or a plain fetch call.
Gmail API send email: a working Python and Node.js guide
Gmail API send email tutorial with working Python and Node.js code, OAuth setup, base64url encoding, quotas, and when an API-first inbox fits better.
SendGrid Inbound Parse: the complete setup and troubleshooting guide
Set up the SendGrid Inbound Parse webhook end to end - MX record, dashboard config, the multipart payload fields - plus fixes for when it is not working.
SendGrid API: how to send email with the v3 Mail Send API
A working tutorial to send email with the SendGrid API - curl and Node.js code, API key setup, sender verification, and fixes for the common 401 and 403 errors.
SendGrid webhook: the complete Event Webhook guide
How the SendGrid webhook works - the events it sends, how to configure it, verifying the ECDSA signature, retry behavior, and why it fails.
The best email validation API in 2026: an honest comparison
An honest 2026 comparison of email validation API providers - free tiers, accuracy, and the validation layers that predict deliverability before you send.
Email webhooks: how to receive email as JSON
An email webhook POSTs inbound mail to your endpoint as JSON. Learn what an email webhook is, how to receive one, verify signatures, and pick a provider.
Give your AI agent an inbox in five minutes
Create a real email address for your agent with one API call, receive inbound mail as a webhook or WebSocket event, and reply over REST - no IMAP, no OAuth dance, no mail server.
The 5 best email APIs for developers in 2026
The best email API depends on your job: SendGrid, Mailgun, Postmark, Resend, or AgenticEmail. An honest 2026 comparison for developers.
Mailgun webhook guide: events, Routes, and signature verification
A complete Mailgun webhook guide - event webhooks vs inbound Routes, the payload shape, HMAC signature verification in Node, retries, and testing.
Gmail webhook: how to get a real-time push when email arrives
Gmail has no native webhook. Here is how to build one with Gmail API push notifications and Cloud Pub/Sub, plus simpler alternatives for agents.
Transactional email API: the definitive guide for 2026
What a transactional email API is, how it differs from marketing email, and how to choose one - deliverability, webhooks, idempotency, and two-way replies.
What does queued mean in email? A plain-English guide
What does queued mean in email? A guide to the queued status in Gmail, Outlook, and on mail servers, plus how sending queues work for developers.
Noreply email addresses: what they are and why to stop using them
What a noreply email address is, why companies use noreply@, and the 2026 case against it - deliverability, trust, and the reply-capable alternative.
BCC in email: what it means and when to use it
BCC in email means blind carbon copy. Learn what BCC means, how it differs from CC, when to use it, and how to send BCC in Gmail, Outlook, and code.
Scoped API keys, WebSocket events, batch sending, scheduled sends, and SMTP
A big infrastructure drop: per-inbox scoped keys, a real-time WebSocket event stream, batch and scheduled sending, and an SMTP gateway for everything that speaks classic email.
Why AI agents need their own email infrastructure
Email is the universal API between businesses - and agents are terrible tenants in human inboxes. Why borrowing a Gmail account does not scale, and what agent-native email looks like.