Send transactional emails using ctx.email.send() with full control over HTML content, recipients, and attachments. Preview the exact HTML first, then send it to an address you control. The same API also supports managed inboxes, destinations, and inbound message inspection, so you can pair outbound sends with receive workflows when you need them.
Fromhello-explorer@agentuity.email
To
Send this demo to an inbox you can check. The Preview tab matches the delivered HTML.
Enter a valid email address.
SubjectHello from the Agentuity SDK Explorer
await ctx.email.send({
from: "hello-explorer@agentuity.email",
to: ["you@example.com"],
subject: "Hello from the Agentuity SDK Explorer",
html: "<p>This email was sent by an agent...</p>",
text: "This email was sent by an Agentuity agent...",
});This is a demo email from Agentuity's SDK Explorer.
It was sent by an Agentuity agent using ctx.email.send().
Agents can also use features like queues, databases, webhooks, scheduled tasks, and more.
Reference Code
Loading...
Ready
Output will appear here...