Cloudflare Email Service:パブリックベータ版開始、エージェント対応準備完了
Cloudflareは、AIエージェントが電子メールを送受信できるようにする「Cloudflare Email Service」をパブリックベータで公開し、エージェント開発者向けのツールキットを拡充した。
キーポイント
Email Serviceのパブリックベータ開始
Cloudflare Email Serviceがパブリックベータ段階に入り、あらゆるアプリケーションやエージェントが電子メールを送信できるようになった。
エージェント向け電子メールインフラの提供
Email Routingによる受信、Email Sendingによる送信機能を提供し、エージェントが電子メールをネイティブインターフェースとして利用できるインフラを構築する。
開発者ツールキットの拡充
Workersバインディング、Email MCPサーバー、Wrangler CLIコマンド、コーディングエージェント向けスキル、オープンソースのエージェンティックインボックス参照アプリなど、開発リソースを提供する。
技術的簡素化と信頼性向上
APIキーやシークレット管理が不要なWorkersバインディングを提供し、SPF/DKIM/DMARCレコードの自動設定により、電子メールの受信ボックス到達率を向上させる。
影響分析・編集コメントを表示
影響分析
この発表は、AIエージェントの実用化において電子メールが重要な通信チャネルとして認識されていることを示している。Cloudflareが提供するインフラにより、開発者は複雑な電子メール配信設定から解放され、エージェント機能の構築に集中できるようになる。これにより、カスタマーサポート、請求書処理、アカウント認証などの実用的なエージェントアプリケーションの開発が加速することが期待される。
編集コメント
AIエージェントの実世界インタラクションにおける電子メールの重要性を認識し、開発者体験を大幅に改善する実用的なサービス発表。既存のCloudflare開発者エコシステムとの統合が強み。
プライベートベータ期間中、私たちはメールエージェントの実験も行いました。メールを確認し、エージェントが何をしているのかを把握するために、人間による監視を維持したい場合が多いことが明らかになりました。これを実現する最良の方法は、エージェントの自動化機能が組み込まれた完全な機能を持つメールクライアントを用意することです。
そのため私たちはAgentic Inboxを構築しました。これは、完全な会話スレッド、メールレンダリング、メールとその添付ファイルの受信・保存、メールへの自動返信機能を備えたリファレンスアプリケーションです。専用のMCP(Model Context Protocol)サーバーが組み込まれており、外部エージェントがあなたのagentic-inboxから送信する前に、レビュー用にメールを下書きできます。

このAgentic Inboxをオープンソース化し、受信にEmail Routing、送信にEmail Sending、分類にWorkers AI、添付ファイルの保存にR2、ステートフルなエージェントロジックにAgents SDKを使用して、完全なメールアプリケーションを構築する方法を示すリファレンスアプリケーションとして提供します。ボタンをクリックするだけで、完全な受信箱、メールクライアント、メール対応エージェントを今日からデプロイできます。
私たちはメールエージェントツールが構成可能で再利用可能であることを望んでいます。すべてのチームが同じ受信-分類-返信パイプラインを一から再構築するのではなく、このリファレンスアプリケーションから始めてください。フォークし、拡張し、あなたのワークフローに合った独自のメールエージェントの出発点として使用してください。
今日試してみる
メールは世界で最も重要なワークフローが存在する場所ですが、エージェントにとってはしばしばアクセスが困難なチャネルでした。Email Sendingがパブリックベータになったことで、Cloudflare Email Serviceは双方向通信の完全なプラットフォームとなり、受信箱がエージェントの第一級インターフェースになります。
顧客の受信箱で対応するサポートエージェントを構築する場合でも、チームをリアルタイムで更新し続けるバックグラウンドプロセスを構築する場合でも、あなたのエージェントはグローバル規模でシームレスに通信する手段を手に入れました。受信箱はもはやサイロではありません。今や、あなたのエージェントが活躍できるもう一つの場所です。
CloudflareダッシュボードでEmail Sendingを試す
Email Serviceドキュメントを読む
Agents SDKメールドキュメントを参照する
Email Service MCPサーバーとスキルを確認する
オープンソースリファレンスアプリをデプロイする

Cloudflare TVで視聴する
原文を表示
Email is the most accessible interface in the world. It is ubiquitous. There’s no need for a custom chat application, no custom SDK for each channel. Everyone already has an email address, which means everyone can already interact with your application or agent. And your agent can interact with anyone.
If you are building an application, you already rely on email for signups, notifications, and invoices. Increasingly, it is not just your application logic that needs this channel. Your agents do, too. During our private beta, we talked to developers who are building exactly this: customer support agents, invoice processing pipelines, account verification flows, multi-agent workflows. All built on top of email. The pattern is clear: email is becoming a core interface for agents, and developers need infrastructure purpose-built for it.
Cloudflare Email Service is that piece. With Email Routing, you can receive email to your application or agent. With Email Sending, you can reply to emails or send outbounds to notify your users when your agents are done doing work. And with the rest of the developer platform, you can build a full email client and Agents SDK onEmail hook as native functionality.
Today, as part of Agents Week, Cloudflare Email Service is entering public beta, allowing any application and any agent to send emails. We are also completing the toolkit for building email-native agents:
Email Sending binding, available from your Workers and the Agents SDK
A new Email MCP server
Wrangler CLI email commands
Skills for coding agents
An open-source agentic inbox reference app
Email Sending: now in public beta
Email Sending graduates from private beta to public beta today. You can now send transactional emails directly from Workers with a native Workers binding — no API keys, no secrets management.
export default {
async fetch(request, env, ctx) {
await env.EMAIL.send({
to: "user@example.com",
from: "notifications@your-domain.com",
subject: "Your order has shipped",
text: "Your order #1234 has shipped and is on its way."
});
return new Response("Email sent");
},
};
Or send from any platform, any language, using the REST API and our TypeScript, Python, and Go SDKs:
curl "https://api.cloudflare.com/client/v4/accounts/{account_id}/email-service/send" \
--header "Authorization: Bearer <API_TOKEN>" \
--header "Content-Type: application/json" \
--data '{
"to": "user@example.com",
"from": "notifications@your-domain.com",
"subject": "Your order has shipped",
"text": "Your order #1234 has shipped and is on its way."
}'
Sending email that actually reaches inboxes usually means wrestling with SPF, DKIM, and DMARC records. When you add your domain to Email Service, we configure all of it automatically. Your emails are authenticated and delivered, not flagged as spam. And because Email Service is a global service built on Cloudflare's network, your emails are delivered with low latency anywhere in the world.
Combined with Email Routing, which has been free and available for years, you now have complete bidirectional email within a single platform. Receive an email, process it in a Worker, and reply, all without leaving Cloudflare.
For the full deep dive on Email Sending, refer to our Birthday Week announcement. The rest of this post describes what Email Service unlocks for agents.
Agents SDK: your agent is email-native
The Agents SDK for building agents on Cloudflare already has a first-class onEmail hook for receiving and processing inbound email. But until now, your agent could only reply synchronously, or send emails to members of your Cloudflare account.
With Email Sending, that constraint is gone. This is the difference between a chatbot and an agent.
image
Email agents receive a message, orchestrate work across the platform, and respond asynchronously.
A chatbot responds in the moment or not at all. An agent thinks, acts, and communicates on its own timeline. With Email Sending, your agent can receive a message, spend an hour processing data, check three other systems, and then reply with a complete answer. It can schedule follow-ups. It can escalate when it detects an edge case. It can operate independently. In other words: it can actually do work, not just answer questions.
Here's what a support agent looks like with the full pipeline — receive, persist, and reply:
import { Agent, routeAgentEmail } from "agents";
import { createAddressBasedEmailResolver, type AgentEmail } from "agents/email";
import PostalMime from "postal-mime";
export class SupportAgent extends Agent {
async onEmail(email: AgentEmail) {
const raw = await email.getRaw();
const parsed = await PostalMime.parse(raw);
// Persist in agent state
this.setState({
...this.state,
ticket: { from: email.from, subject: parsed.subject, body: parsed.text, messageId: parsed.messageId },
});
// Kick off long running background agent task
// Or place a message on a Queue to be handled by another Worker
// Reply here or in other Worker handler, like a Queue handler
await this.sendEmail({
binding: this.env.EMAIL,
fromName: "Support Agent",
from: "support@yourdomain.com",
to: this.state.ticket.from,
inReplyTo: this.state.ticket.messageId,
subject: Re: ${this.state.ticket.subject},
text: Thanks for reaching out. We received your message about "${this.state.ticket.subject}" and will follow up shortly.
});
}
}
export default {
async email(message, env) {
await routeAgentEmail(message, env, {
resolver: createAddressBasedEmailResolver("SupportAgent"),
});
},
} satisfies ExportedHandler<Env>;
If you're new to the Agents SDK's email capabilities, here's what's happening under the hood.
Each agent gets its own identity from a single domain. The address-based resolver routes support@yourdomain.com to a "support" agent instance, sales@yourdomain.com to a "sales" instance, and so on. You don't need to provision separate inboxes — the routing is built into the address. You can even use sub-addressing (NotificationAgent+user123@yourdomain.com) to route to different agent namespaces and instances.
State persists across emails. Because agents are backed by Durable Objects, calling this.setState() means your agent remembers conversation history, contact information, and context across sessions. The inbox becomes the agent's memory, without needing a separate database or vector store.
Secure reply routing is built in. When your agent sends an email and expects a reply, you can sign the routing headers with HMAC-SHA256 so that replies route back to the exact agent instance that sent the original message. This prevents attackers from forging headers to route emails to arbitrary agent instances — a security concern that most "email for agents" solutions haven't addressed.
This is the complete email agent pipeline that teams are building from scratch elsewhere: receive email, parse it, classify it, persist state, kick off async workflows, reply or escalate — all within a single Agent class, deployed globally on Cloudflare's network.
Email tooling for your agents: MCP server, Wrangler CLI, and skills
Email Service isn't only for agents running on Cloudflare. Agents run everywhere, whether it’s coding agents like Claude Code, Cursor, or Copilot running locally or in remote environments, or production agents running in containers or external clouds. They all need to send email from those environments. We're shipping three integrations that make Email Service accessible to any agent, regardless of where it runs.
Email is now available through the Cloudflare MCP server, the same Code Mode-powered server that gives agents access to the entire Cloudflare API. With this MCP server, your agent can discover and call the Email endpoints to send and configure emails. You can send an email with a simple prompt:
"Send me a notification email at hello@example.com from my staging domain when the build completes"
For agents running on a computer or a sandbox with bash access, the Wrangler CLI solves the MCP context window problem that we discussed in the Code Mode blog post — tool definitions can consume tens of thousands of tokens before your agent even starts processing a single message. With Wrangler, your agent starts with near-zero context overhead and discovers capabilities on demand through --help commands. Here is how your agent can send an email via Wrangler:
wrangler email send \
--to "teammate@example.com" \
--from "agent@your-domain.com" \
--subject "Build completed" \
--text "The build passed. Deployed to staging."
Regardless of whether you give your agent the Cloudflare MCP or the Wrangler CLI, your agent will be able to now send emails on your behalf with just a prompt.
Skills
We are also publishing a Cloudflare Email Service skill. It gives your agents complete guidance: configuring the Workers binding, sending emails via the REST API or SDKs, handling inbound email with Email Routing configuration, building with Agents SDK, and managing email through Wrangler CLI or MCP. It also covers deliverability best practices and how to craft good transactional emails that land in inboxes rather than spam. Drop it into your project and your coding agent has everything needed to build production-ready email on Cloudflare.
Open-sourcing tools for email agents
During the private beta, we also experimented with email agents. It became clear that you often want to keep the human-in-the-loop element to review emails and see what the agent is doing.The best way to do that is to have a fully featured email client with agent automations built-in.
That’s why we built Agentic Inbox: a reference application with full conversation threading, email rendering, receiving and storing emails and their attachments, and automatically replying to emails. It includes a dedicated MCP server built-in, so external agents can draft emails for your review before sending from your agentic-inbox.
image
We’re open-sourcing Agentic Inbox as a reference application for how to build a full email application using Email Routing for inbound, Email Sending for outbound, Workers AI for classification, R2 for attachments, and Agents SDK for stateful agent logic. You can deploy it today to get a full inbox, email client and agent for your emails, with the click of a button.
We want email agent tooling to be composable and reusable. Rather than every team rebuilding the same inbound-classify-reply pipeline, start with this reference application. Fork it, extend it, use it as a starting point for your own email agents that fit your workflows.
Try it out today
Email is where the world’s most important workflows live, but for agents, it has often been a difficult channel to reach. With Email Sending now in public beta, Cloudflare Email Service becomes a complete platform for bidirectional communication, making the inbox a first-class interface for your agents.
Whether you’re building a support agent that meets customers in their inbox or a background process that keeps your team updated in real time, your agents now have a seamless way to communicate on a global scale. The inbox is no longer a silo. Now it’s one more place for your agents to be helpful.
Try out Email Sending in the Cloudflare Dashboard
Read the Email Service documentation
Follow the Agents SDK email docs
Check out the Email Service MCP server and Skills
Deploy the open-source reference app
image
Watch on Cloudflare TV
関連記事
Google Cloud、豪州の取引ファンドのインフラを削除
Google Cloud は豪州の1240億ドル規模のファンドからデータを誤って削除したが、サードパーティ製のバックアップにより被害は免れた。同社CEOが責任を認め、地域複製機能でも削除を防げなかったことを認めた。
コードオレンジ:小規模障害対策完了によりクラウドフレアネットワークが強化
クラウドフレアは過去2四半期にわたり「コードオレンジ」と呼ぶ内部プロジェクトを通じてインフラの耐障害性とセキュリティを向上させる取り組みを行い、11月18日の障害回避に必要な作業を完了した。
マイクロソフトとオープンエイトの新たな提携契約の内容解説
マイクロソフトとオープンエイトは、長年の複雑な関係を経て今週、新たな提携契約を結ぶことで合意しました。両社は経営陣の対立やインフラをめぐる不満など過去の緊張関係を乗り越え、AI 分野での協力体制を再構築します。