skillfed

django-multi-email-field

Provides a model field and a form field to manage list of e-mails

django-multi-email-field v0.8.0 98.5K downloads/30d#13,080 on PyPI
License unclear AGING released

What it is and what it does

django-multi-email-field is a Django extension that adds a specialized field type for storing and managing multiple email addresses in your models and forms. It provides both a model field for database storage and a form field with an accompanying widget for user input, handling parsing and validation of email lists.

The package is a focused tool that fills a gap in Django's standard field types by offering a straightforward way to capture and persist lists of emails. It depends only on django and supports Python 3.9+ and Django 4.2+. The last release was 455 days ago; while classified as Production/Stable, the infrequency of updates suggests it may be in a maintenance-only state rather than actively developed.

Use it for:

  • Store a list of recipient email addresses in a contact or mailing list model without manually parsing or serializing strings.
  • Build a form that lets users enter multiple email addresses at once, with built-in validation for each address.
  • Manage team or department email lists in a Django admin interface with a clean, multi-email input widget.
  • Accept bulk email subscriptions or notifications in a single form field without custom parsing logic.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides Django model and form fields to store and manage lists of email addresses with built-in validation and a widget for editing multiple emails.

Yes, if you need a straightforward way to handle multiple emails in Django models and forms. The package is stable, has low install friction, and supports current Python and Django versions. However, verify the license before use and be aware that updates are infrequent; if you need active development or custom email handling beyond basic storage and validation, consider whether a more actively maintained alternative suits your needs.

Install

django-multi-email-field on PyPI

pip

pip install django-multi-email-field

uv

uv add django-multi-email-field

poetry

poetry add django-multi-email-field

Installing django-multi-email-field

Before you install

Low install friction with a single Django dependency. Marked as aging (455 days since last release), but classifiers indicate support for Django 4.2 through 5.2 and Python 3.9 through 3.13, suggesting maintained compatibility despite infrequent updates.

License in practice

License treatment is unclear—no SPDX identifier or raw license text is available in the package metadata. Verify the actual license before use in proprietary or restricted projects.

Quickstart

pip install django-multi-email-field

# settings.py
INSTALLED_APPS = [
    ...,
    'django_multi_email_field',
]

# models.py
from django.db import models

class ContactModel(models.Model):
    emails = MultiEmailField()

Requires Django 4.2+ and Python 3.9+; the app must be added to INSTALLED_APPS.

Verify before relying

  • Whether the package is actively maintained or in maintenance-only mode given the 455-day release gap.
  • What the actual license is, since license metadata is absent from PyPI.
  • Whether the email list is stored as a delimited string, JSON, or another format in the database.

Package facts

License not declared (unclear)
Python support supports the current Python release (>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 1 — django
Maintenance aging — 455 days since the last release
First released
Downloads 98,497/month — #13,080 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: django_multi_email_field-0.8.0-py3-none-any.whl

Development Status :: 5 - Production/StableEnvironment :: Web EnvironmentFramework :: DjangoFramework :: Django :: 4.2Framework :: Django :: 5.1Framework :: Django :: 5.2Intended Audience :: DevelopersNatural Language :: EnglishOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.9Topic :: Utilities

Tags

django multiple email fieldstore list of emails djangodjango email list model fielddjango multi-email form widgetbulk email addresses djangodjango email array field
django-fieldemail-handling

More Utilities packages