The complete email infrastructure for modern applications. Send transactional emails, receive inbound messages, and build AI email agents with our TypeScript SDK and webhook API.
Trusted by builders at
import { Inbound } from '@inboundemail/sdk'
const inbound = new Inbound(process.env.INBOUND_API_KEY!)
await inbound.emails.send({
from: 'agent@inbnd.dev',
to: 'you@example.com',
subject: 'Hello from Inbound',
html: '<p>It just works.</p>'
})
export async function POST(req: Request) {
const { email } = await req.json()
console.log(email.subject, email.html)
return Response.json({ success: true })
}
Everything you need to handle email in your application. From transactional sending to AI-powered replies.
Send welcome emails, notifications, and alerts with our reliable email sending API. Compatible with popular email services.
Process incoming emails with webhooks. Get structured data including HTML, text, attachments, and headers.
Build intelligent email responders and customer service bots. Auto-reply with context-aware AI responses.
TypeScript-first SDK, comprehensive documentation, and webhook-based architecture for modern applications.
Full type safety with IntelliSense support. Our SDK provides complete TypeScript definitions for all email operations, webhook payloads, and API responses.
Fully typed webhook payloads for email events
IntelliSense for all API methods and parameters
Comprehensive error types and status codes
import { Inbound } from '@inboundemail/sdk'
import type { InboundWebhookPayload } from '@inboundemail/sdk'
const inbound = new Inbound(process.env.INBOUND_API_KEY!)
export async function handleWebhook(
payload: InboundWebhookPayload
) {
const { email } = payload
// Full type safety and IntelliSense
console.log(email.subject, email.from, email.html)
// Send typed response
await inbound.reply(email, {
from: 'support@yourdomain.com',
html: '<p>Thanks for your email!</p>',
tags: [{ name: 'source', value: 'webhook' }]
})
}
From SaaS applications to e-commerce platforms, our email API powers diverse use cases.
User onboarding, notifications, and support email automation for software platforms.
Order confirmations, shipping updates, and customer service email workflows.
AI-powered support agents that handle common queries and route complex issues.
Drip campaigns, newsletter management, and behavioral email triggers.
Enterprise volume, custom integrations, or specialized requirements? Let's discuss how we can build the perfect email infrastructure for your needs.
Ready to build with our email API? Start with our comprehensive documentation and examples.
Complete API reference with examples for sending, receiving, and replying to emails.
View Docs →Create your account and get your API key in minutes. Free tier includes 1,000 emails per month.
Get Started →Install our TypeScript SDK with full type safety and IntelliSense support.
View on GitHub →Join developers who've simplified their email infrastructure with Inbound.
Free tier • 1,000 emails/month • No credit card required