Skip to main content

What is Transmit?

Transmit is a universal data transmission platform that provides APIs for emails, SMS, voice calls, logs, and analytics. We’re built to be Resend and SendGrid API-compatible, making migration seamless.

Key Features

Quick Example

Here’s how easy it is to send your first email with Transmit:
import { Transmit } from 'transmitdev';

const client = new Transmit({
  apiKey: 'tx_your_api_key_here'
});

const response = await client.emails.send({
  from: '[email protected]',
  to: '[email protected]',
  subject: 'Welcome to Transmit!',
  html: '<h1>Hello World</h1><p>Your first email via Transmit.</p>'
});

console.log(response.id); // Email sent successfully

Next Steps