The Telnyx Email API is now generally available and email is now a production-grade channel on the Telnyx platform. Any Telnyx customer can start sending email immediately.
Transactional and marketing email, on the same carrier-owned platform you already use for SMS, voice, and WhatsApp. One API key, one dashboard, one bill.
email.received webhooks, and build reply and thread workflows.POST /v2/email_messages with from, to, cc, bcc, reply_to, subject, html_body, text_body, custom headers, attachments, tags, and metadatainbound_enabledemail.received webhooksPay-as-you-go, volume-based. No subscriptions, no minimums.
Customers sending at scale typically save 50-80% versus premium providers like SendGrid, Mailgun, and Postmark. See full pricing.
POST /v2/email_messages.curl -X POST https://api.telnyx.com/v2/email_messages \ -H "Authorization: Bearer $TELNYX_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "from": "[email protected]", "to": ["[email protected]"], "subject": "Hello from Telnyx", "html_body": "<p>It works!</p>", "text_body": "It works!" }'