--- id: django-celery-email version: "3.0.0" license: BSD license_treatment: permissive maintenance: abandoned --- # django-celery-email — An async Django email backend using celery License: permissive · Maintenance: abandoned · Downloads: 233.5K/mo ## What it is and what it does django-celery-email is a Django email backend that offloads message sending to Celery workers, preventing email operations from blocking HTTP request handling. Instead of sending mail synchronously during request processing, it queues the work and lets background Celery tasks handle delivery. The package wraps Django's standard email API, so existing code using `django.core.mail` continues to work unchanged—you simply swap the backend and add configuration. The package sends mass emails in configurable chunks (default 10 per task) and supports all Django email features including attachments, HTML content, and custom MIME types. It can use any underlying email backend (SMTP, SendGrid, etc.) and exposes Celery task configuration through Django settings. Because the repository is archived with no updates since 2019, it is no longer actively maintained, and compatibility with recent Django or Celery versions is uncertain. Use it for: - Prevent email sending from blocking web requests in Django applications handling user signups, password resets, or notifications. - Scale email delivery across multiple Celery workers to handle high-volume transactional mail without overwhelming a single process. - Batch email operations into configurable chunk sizes to respect rate limits imposed by email service providers. - Track email delivery status asynchronously by enabling Celery result backends and checking AsyncResult objects. - Integrate email sending into existing Celery task pipelines alongside other background work. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Routes Django email sending through Celery task queues for asynchronous, out-of-band message delivery instead of blocking the request. Yes, if your Django project already uses Celery and you need async email delivery—the package is stable and has low install friction. However, proceed with caution: the repository is archived and unmaintained since 2019, so compatibility with modern Django (4.0+) and Celery (5.x+) is unverified. Test thoroughly in your environment before deploying to production, and consider monitoring for security or compatibility issues. ## Install pip install django-celery-email uv add django-celery-email poetry add django-celery-email ## Installing django-celery-email Before you install: Low friction installation with three straightforward runtime dependencies. However, the repository is archived and the last release was in 2019; no active maintenance or updates since then. License in practice: BSD license is permissive, allowing commercial and private use with minimal restrictions—suitable for most projects. Quickstart: pip install django-celery-email # In Django settings.py: INSTALLED_APPS += ('djcelery_email',) EMAIL_BACKEND = 'djcelery_email.backends.CeleryEmailBackend' # Then send email normally: from django.core import mail mail.send_mass_mail(emails) Requires a working Celery installation and broker (Redis, RabbitMQ, etc.) configured alongside Django; email sending will not work without both. Verify before relying: - Whether the package remains compatible with Django versions released after 2019 or current Celery 5.x+ releases. - Whether the archived repository will accept security patches or bug fixes if issues arise. - Current real-world usage patterns and whether active forks or maintained alternatives exist. ## Package facts - License: BSD (permissive) - Python support: unspecified - Install friction: low - Maintenance: abandoned - Downloads: 233.5K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags django async email backend, celery email queue, django background email sending, asynchronous django mail, celery-backed email, django email worker tasks, non-blocking email delivery, async-email, celery-integration, django-backend [View on SkillFed](https://skillfed.io/packages/django-celery-email) · [View on PyPI](https://pypi.org/project/django-celery-email/)