Render25 — High-performance transactional email platform. Now available.
Client SDKs

Django SDK

The official Render25 Django email backend. Seamlessly integrates with Django's built-in mail system.

Installation

Terminal
pip install render25-django

Basic Usage

settings.py
EMAIL_BACKEND = 'render25_django.EmailBackend'
RENDER25_API_KEY = 'your_api_key_here'
views.py
from django.core.mail import send_mail

def welcome_user(request):
    send_mail(
        'Welcome to Render25',
        'Your account is ready.',
        '[email protected]',
        ['[email protected]'],
        fail_silently=False,
    )