Agentuity Documentation

Email

Docs

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.

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...",
});
Reference Code
Loading...
Ready
Output will appear here...