Introduction
Get started with Transactional - the developer-first email infrastructure platform.
What is Transactional?
Transactional is a modern email infrastructure platform built for developers. Send transactional emails, marketing campaigns, and more with a simple API.
Key Features
- Reliable Delivery - 99.9% deliverability rate with automatic retries and smart routing
- Real-time Analytics - Track opens, clicks, bounces, and more in real-time
- Developer First - SDKs for JavaScript, Python, Ruby, Go, and more
- Templates - Build responsive email templates with our drag-and-drop editor or code your own
Quick Example
Send your first email with just a few lines of code:
import { Transactional } from 'transactional-sdk';
const client = new Transactional('your-api-key');
await client.emails.send({
from: 'hello@yourdomain.com',
to: 'user@example.com',
subject: 'Welcome to our platform!',
html: '<h1>Welcome!</h1><p>Thanks for signing up.</p>',
});Next Steps
Ready to get started? Check out our Installation Guide to set up Transactional in your project.