Email

100 emails free

Transactional email delivery

Passthrough

Send transactional emails with best-in-class deliverability. Features React email templates, delivery tracking, bounce and complaint handling, and detailed analytics. Optimized sending infrastructure ensures your emails reach the inbox.

Overview
Pricing
Usage
Docs
Examples
Send Emailsend.ts
typescript
import { sylphx } from '@sylphx/sdk'

await sylphx.email.send({
  to: 'user@example.com',
  subject: 'Welcome to our app!',
  html: '<h1>Welcome!</h1><p>Thanks for signing up.</p>',
})
React Templatetemplate.tsx
typescript
import { Email, Button } from '@sylphx/email'

export const WelcomeEmail = ({ name }: { name: string }) => (
  <Email>
    <h1>Welcome, {name}!</h1>
    <Button href="https://app.example.com">
      Get Started
    </Button>
  </Email>
)

Looking for more examples?

View on GitHub