Email API · DKIM · Dedicated IPs

Transactional Email API

Deliver password resets, receipts, and account notifications with confidence. Dedicated IPs, full email authentication, and real-time delivery tracking.

Key Features

Dedicated IP pools

Your sender reputation is yours alone. Growth and Business plans include dedicated IPs so other senders can't affect your deliverability.

Full email authentication

SPF, DKIM, and DMARC setup is guided during onboarding. All outbound mail is DKIM-signed by default.

HTML templates

Send raw HTML or store reusable templates in your dashboard. Reference them by ID at send time with dynamic variable substitution.

Real-time delivery webhooks

Events for: delivered, bounced (hard/soft), spam complaint, opened, clicked, and unsubscribed — with full metadata.

Code Example

await client.email.send({
  to: 'user@example.com',
  from: 'noreply@yourapp.com',
  subject: 'Your password reset link',
  templateId: 'password-reset',
  variables: {
    name: 'Sarah',
    resetUrl: 'https://app.example.com/reset?token=abc123',
    expiresIn: '15 minutes',
  },
})