Skip to main content

Email

500 emails free

Transactional & marketing email

Complete email infrastructure for transactional and marketing emails. Send welcome emails, password resets, order confirmations with best-in-class deliverability. Run marketing campaigns with subscriber management, segmentation, double opt-in, and engagement analytics. Built-in GDPR compliance.

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

await sylphx.email.send({
  to: '[email protected]',
  subject: 'Welcome to our app!',
  html: '<h1>Welcome!</h1><p>Thanks for signing up.</p>',
})
Send Marketing Campaigncampaign.ts
typescript
await sylphx.email.sendCampaign({
  subject: 'New Feature Launch!',
  html: '<h1>Check out our new feature</h1>',
  segment: { preferences: ['product_updates'] },
})

Looking for more examples?

View on GitHub