Built for AI
Simple API designed for LLMs and automation. Create programmatic inboxes in seconds.
Give your AI agents email superpowers. Create inboxes, send emails, and receive messages programmatically.
Install the SDK and start sending emails in minutes:
npm install @myxara/sdk-jsimport { 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>'
})Auto-reply to customer emails with AI-generated responses. Build intelligent support agents that never sleep.
Create AI SDRs that respond to inbound leads, qualify prospects, and schedule meetings automatically.
Process incoming emails for sentiment analysis, categorization, and automated routing with AI.