Harbur — High-performance infrastructure platform. Now available.
Client SDKs

Django SDK

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

Installation

Terminal
pip install harbur-django

Basic Usage

settings.py
EMAIL_BACKEND = 'harbur_django.EmailBackend'
HARBUR_API_KEY = 'your_api_key_here'
views.py
from django.core.mail import send_mail

def welcome_user(request):
    send_mail(
        'Welcome to Harbur',
        'Your account is ready.',
        'hello@yourdomain.com',
        ['user@example.com'],
        fail_silently=False,
    )