Email Service - Send emails with named recipient addresses
1mo ago
Source
CloudflareEmail Service - Send emails with named recipient addressescloudflare.comYou can now send emails with display names on recipient addresses in addition to the existing from support. Pass an object with email and an optional name field for to , cc , bcc , replyTo , or from : JavaScript export default { async fetch ( request , env ) { const response = await env . EMAIL . send ( { from : { email : "[email protected]" , name : "Support Team" }, to : { email : "[email protected]" , name : "Jane Doe" }, cc : [ "[email protected]" , { email : "[email protected]" , name : "Engineering Team" }, ] , subject : "Welcome!" , html : "
Thanks for joining!
" , text : "Thanks for joining!" , } ) ; return Response . json ( { messageId : response . messageId } ) ; }, }; TypeScript export default { async fetch ( request , env ) : Promise < Response > { const response = await env . EMAIL . send ( { from : { email : "[email protected]" , name : "Support Team" }, to : { email : "[email protected]" , name : "Jane Doe" }, cc : [ "[email protected]" , { email : "[email protected]" , name : "Engineering Team" }, ] , subject : "Welcome!" , html : "Thanks for joining!
" , text : "Thanks for joining!" , } ) ; return Response . json ( { messageId : response . messageId } ) ; }, } satisfies ExportedHandler < Env >; Plain strings remain fully supported for backward compatibility, and you can mix strings and named objects in the same array. Refer to the Workers API and REST API documentation for full request examples.You might also wanna read
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
Why Self-Hosting Email Is Problematic: A Startup's Experience with Email Deliverability Issues
The author shares their experience with using a professional transactional email service (TEM) for their startup, contrasting it with the co
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
Show HN: E2a – Open-source email gateway for AI agents
github.com·1mo ago
Thunderbird Adds Native Microsoft Exchange Email Support in Version 145
Thunderbird version 145 now includes native Microsoft Exchange email support via Exchange Web Services (EWS) protocol, eliminating the need
EmailTemple: AI email studio that generates ESP-native templates with brand kits
EmailTemple is an AI-powered email design studio that generates ESP-native templates (Mailchimp, ActiveCampaign, MailerLite) with brand kits

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