The Telnyx Email API is in beta, on the same carrier-owned platform that already runs your SMS, voice, and WhatsApp. One API key, one dashboard, one bill. This guide covers what it is, why we built it, and how to send your first email in five minutes.
Your voice agent just wrapped a call. It confirmed the order, answered two questions, and now it needs to send the receipt with the invoice attached. That last step is the one that used to require a different vendor, a different API key, and a different invoice of your own.
The Telnyx Email API is in beta, on the same carrier-owned platform that already runs your SMS API, Voice API, and WhatsApp. Same key, same dashboard, same bill. Your agents can talk, text, and email without leaving the platform, and act on what happens next, because bounces, opens, and clicks arrive as webhooks they are already listening to.
This guide covers what it is, why we built it, and how to send your first email in five minutes.
An email API is a REST interface that lets you send email programmatically. Instead of connecting to an SMTP server and managing delivery yourself, you POST a JSON payload and the API handles routing, delivery, tracking, and bounce processing.

Developers use an email API instead of SMTP for the control it gives. You get delivery receipts, open and click tracking, templates, suppression management, and deliverability tooling, all through a single interface. SMTP gives you a pipe. An email API gives you a pipeline.
Order confirmations, invoices, and payment receipts sent automatically after a purchase.
Secure reset links with expiration windows, delivered instantly through the same API.
One-time passwords and verification codes for multi-factor authentication flows.
Threshold notifications, security alerts, and system status updates sent in real time.
Welcome emails, drip campaigns, and progressive feature introduction for new users.
Newsletters and promotional content sent through the same pipeline, with open and click tracking built in.
Every SaaS app sends transactional email. Most teams use a separate vendor for it, with a separate API key, a separate invoice, and a separate dashboard. That is one more vendor to manage, one more contract to renew, one more integration to maintain.
Telnyx already runs SMS, voice and WhatsApp on one platform. Email was the last primitive you needed a second vendor for. So we built it into the same infrastructure, on the same MTA stack, with the same API key.
Deliverability is built into the platform, not a separate tool you have to buy. Telnyx generates SPF, DKIM, and DMARC records for your sending domain, verifies them, and monitors for DNS drift so a silent change at your DNS provider does not tank your inbox placement. Two-tier suppression checks catch bounces and spam complaints at both the API and inject time, eliminating the check-to-send race.
The API works from any language via HTTP. No SDK install required.
Request early accessThis product is in invite-only beta to existing customers. Submit the form, we'll review your use case, and our team will follow up with next steps.
Request early accessBring your own domain and verify via the API, or use a shared domain to get started immediately. Telnyx generates five DNS records: ownership, SPF, DKIM, MX, and DMARC. Publish them at your DNS provider and trigger verification. Telnyx verifies the records and monitors for drift going forward.
Two things to note: from is an object with email and name, not a string. Use html_body, not html.
Create a template with Liquid variables for dynamic, personalized content:
Templates render server-side. Preview without sending by calling the render endpoint with your variables:
Full template CRUD. No visual editor or SDK required.
Real-time notifications for every event. Webhooks are Ed25519 cryptographically signed using the telnyx-signature-ed25519 and telnyx-timestamp headers, with automatic retry on non-2xx responses.

| Event | Description |
|---|---|
email.queued | Message accepted and queued for sending |
email.sending | Message is being processed by the MTA |
email.sent | Message handed off to the receiving server |
email.delivered | Receiving server confirmed delivery |
email.opened | Recipient opened the message (pixel tracked) |
email.clicked | Recipient clicked a tracked link |
email.bounced | Hard bounce, message could not be delivered |
email.deferred | Soft bounce, delivery retried on schedule |
email.failed | Sending failed after all retries |
email.unsubscribed | Recipient unsubscribed via link or header |
email.complained | Recipient marked as spam at their provider |
email.rejected | Pre-send rejection, reputation or validation |
Webhooks are configured per sender domain, not per message, using POST /v2/email_domains/{domain_id}/webhooks:
For services without a public webhook URL, use the event polling API via GET /v2/email_events. Poll for events on your schedule. This is a differentiator, most email providers do not offer polling alongside webhooks.
Send up to 50 messages in a single API call. The batch endpoint always returns 207 Multi-Status, with per-message success and error arrays:
Each message in the batch gets its own status. One call, one round trip, up to 50 messages.
If you would rather not write the requests yourself, there is an official agent skill for Email API on GitHub. It teaches Claude Code, Cursor, Windsurf, and any other agent that supports the Agent Skills specification how to call these endpoints correctly, instead of guessing from stale training data.
Add the Telnyx skills marketplace, then install the plugin for your language:
The telnyx-email-curl skill covers sending, batch sends, scheduled delivery, templates, email validation, and delivery event tracking. It also encodes the things that are easy to get wrong: that scheduled_at fails open and sends immediately if the timestamp is invalid or in the past, that batch send always returns 207 even when every message succeeds, that Idempotency-Key is only honored on specific endpoints, and that a 429 may signal a reputation suspension rather than a throughput limit. The skill is curl-based, which works as a reference for any language since the API is pure HTTP. Browse the full set at github.com/team-telnyx/ai.
| Feature | What it does | API endpoint |
|---|---|---|
| Liquid templates | Server-side rendering with variables, preview without sending, full CRUD | /v2/email_templates |
| Deliverability | SPF, DKIM, DMARC generation, DNS drift monitoring, per-provider throttling | /v2/email_domains/{id}/verify |
| Suppression | Auto-suppress bounces, spam complaints, unsubscribes. Two-tier check at API and inject time | /v2/suppressions |
| Email validation | Single and batch address validation, free, same API key | /v2/email_validations |
| Tracking | Real-time webhooks, event polling, per-message status history, open and click tracking | /v2/email_events |
Reusable templates with Liquid variables for dynamic, personalized content. Server-side rendering with preview without sending. Full template CRUD via POST, GET, PUT, PATCH, DELETE on /v2/email_templates. No visual editor or SDK required. Create, render, and send from any language.
Telnyx generates SPF, DKIM, and DMARC DNS records for your sending domain. You publish them at your DNS provider. Telnyx verifies and monitors for drift. Per-provider throttling shapes sends for Gmail, Outlook, and other major receivers. Domain reputation enforcement: poor reputation is rejected before send with a 429, and a warning band triggers automatic throttling. The domain health summary endpoint gives you a single view of your sending reputation.
Deliverability built in, not bolted on. Not a separate tool, not an add-on.
Automatic suppression of hard bounces, spam complaints, unsubscribes, and invalid addresses. Two-tier check at API and inject time eliminates the race between checking and sending. Soft-bounce escalation triggers suppression after a configurable threshold.
CSV import and export with auto-detection of common provider export formats for one-step migration. Unsubscribe groups with group-scoped opt-outs. RFC 8058 one-click unsubscribe support, meeting Gmail and Yahoo bulk sender requirements.
Single and batch validation, free. Validate addresses before you hit send and reduce your bounce rate. Available through the same API, same key, same dashboard.
Real-time webhooks for every event from queued to opened. Event polling API via GET /v2/email_events for agents and firewalled services that cannot receive inbound webhooks. Per-message status and full event history lookup. Open, click, and unsubscribe tracking with per-domain toggles.
Email alongside SMS, voice, WhatsApp, and fax under one API key. Same dashboard, same bill, same vendor. For existing Telnyx customers, email is an add-on. For new customers, a reason to consolidate. Pay-as-you-go per email, on the same invoice as your other channels.
Start sending email in five minutesGet your API key at the Telnyx portal. Send your first message with a single curl call. Email API is in beta, with SDKs, dedicated IPs, and campaign management coming soon. Get started or check the developer docs.
Get your API keyRelated articles