Skip to content

MyxaraEmail Infrastructure for AI Agents

Give your AI agents email superpowers. Create inboxes, send emails, and receive messages programmatically.

Quick Start

Install the SDK and start sending emails in minutes:

bash
npm install @myxara/sdk-js
typescript
import { MyxaraClient } from '@myxara/sdk-js'

const client = new MyxaraClient({
  apiKey: process.env.MYXARA_API_KEY!
})

// Create an inbox for your AI agent
const inbox = await client.inboxes.create({
  local_part: 'support',
  name: 'AI Support Agent'
})

console.log(`Inbox created: ${inbox.address}`)
// Output: [email protected]

// Send an email
await client.inboxes.messages(inbox.id).send({
  to: '[email protected]',
  subject: 'How can I help?',
  html: '<p>Hello! I received your inquiry...</p>'
})

Use Cases

AI Customer Support

Auto-reply to customer emails with AI-generated responses. Build intelligent support agents that never sleep.

Lead Nurturing

Create AI SDRs that respond to inbound leads, qualify prospects, and schedule meetings automatically.

Email Analysis

Process incoming emails for sentiment analysis, categorization, and automated routing with AI.

What's Included

  • JavaScript SDK - Full TypeScript SDK with automatic retries and error handling
  • REST API - Simple, well-documented API for any language
  • Webhooks - Real-time notifications for incoming emails
  • Dashboard - Web UI to manage inboxes, view messages, and monitor usage
  • Examples - Production-ready code examples you can copy-paste

Get Started →

Released under the MIT License (SDK) & Elastic License 2.0 (Server)