Transactional email delivery
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.
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>',
})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