Email Service - Email Sending now in public beta
2mo ago
Source
CloudflareEmail Service - Email Sending now in public betacloudflare.comEmail Sending is now in public beta. Send transactional emails directly from Workers ( env.EMAIL.send() ) or the REST API, with support for HTML, plain text, attachments, inline images, and custom headers. Email Sending joins Email Routing under the new Cloudflare Email Service — a single service for sending and receiving email on the Cloudflare developer platform. Send an email from a Worker in a few lines of code: JavaScript export default { async fetch ( request , env ) { const response = await env . EMAIL . send ( { from : "[email protected]" , to : "[email protected]" , subject : "Order confirmed" , html : "
Your order has been confirmed
" , text : "Your order has been confirmed." , } ) ; return Response . json ( { messageId : response . messageId } ) ; }, }; TypeScript export default { async fetch ( request , env ) : Promise < Response > { const response = await env . EMAIL . send ( { from : "[email protected]" , to : "[email protected]" , subject : "Order confirmed" , html : "Your order has been confirmed
" , text : "Your order has been confirmed." , } ) ; return Response . json ( { messageId : response . messageId } ) ; }, } satisfies ExportedHandler < Env >; Email Service also integrates with the Agents SDK , giving your agents a native onEmail hook to receive, process, and reply to emails. Combined with the new Email MCP server and Wrangler CLI email commands, any agent can send email regardless of where it runs. Start sending and receiving emails from Workers and agents today. Email Sending is available on the Workers paid plan. Refer to the Email Service documentation to get started.You might also wanna read
Cloudflare launches Email Service private beta with native Workers integration
Cloudflare is launching a new Email Service in private beta that allows developers to send and receive email directly from Cloudflare Worker
Cloudflare Email Service Enters Public Beta for AI Agent Integration
Cloudflare has launched its Email Service into public beta, providing infrastructure for developers to integrate email capabilities into AI
Cloudflare Email Service Enters Public Beta for AI Agent Integration
Cloudflare has launched its Email Service into public beta, enabling developers to integrate AI agents with email infrastructure. The servic
Show HN: E2a – Open-source email gateway for AI agents
github.com·1mo ago
Mailercloud: Cloud-Based Email Platform for Marketing Campaigns and Transactional Emails
Mailercloud is a cloud-based email platform that enables businesses to send marketing campaigns and transactional emails with high deliverab
AgentMail: Dedicated Email Inboxes for AI Agents
AgentMail is a service that provides dedicated email inboxes for AI agents, enabling them to autonomously send, receive, thread, and reply t

Comments
Sign in to join the conversation.
No comments yet. Be the first.