Render25 — High-performance transactional email platform. Now available.
Get Started

Render25 Documentation

Render25 is a high-performance transactional email platform built for developers. Send millions of emails with guaranteed deliverability through a global SMTP infrastructure and a simple REST API.

Key features

Quick example

Send a transactional email with a single HTTP request:

Send an email
curl -X POST https://api.render25.com/v1/email/send \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "[email protected]",
    "to": "[email protected]",
    "subject": "Welcome to Render25",
    "html": "<h1>Welcome.</h1><p>Your account is ready.</p>",
    "text": "Welcome. Your account is ready."
  }'

Compatible with

Official SDKs are available for all major languages and frameworks:

Node.js
Python
Go
PHP
Ruby
Java
C#
Rust
Next.js
Django
Laravel
Rails

Architecture

Render25 is composed of three distinct layers that work together to ensure reliable, authenticated email delivery at scale:

  1. API Gateway — A Go-based HTTP gateway that accepts email submission requests, validates payloads, enforces rate limits, and queues messages for delivery.
  2. SMTP Engine — A custom SMTP server that handles outbound delivery, TLS negotiation, retry logic, bounce processing, and feedback loop integration.
  3. Analytics Pipeline — A real-time event streaming layer that processes delivery events and exposes them via the dashboard, logs API, and webhooks.

Note

The Render25 SMTP engine and REST API are open source. View the source code on GitHub.