Skip to main content

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

Project description

Field and widget to store a list of e-mail addresses in a Django project.

It provides:

  • A form field and a form widget to edit a list of e-mails in a Django form;

  • A model field to store the captured list of e-mails;

COMPATIBILITY

  • Python 2.7/3.3/3.4/3.5

  • Django 1.8/1.9/1.10

INSTALL

For now:

pip install django-multi-email-field

USAGE

  • Add multi_email_field to your INSTALLED_APPS:

# settings.py
INSTALLED_APPS = (
...
'multi_email_field',
)
  • Use the provided form field and widget:

# forms.py
from django import forms
from multi_email_field.forms import MultiEmailField

class SendMessageForm(forms.Form):
    emails = MultiEmailField()

IN YOUR MODELS

If you want to store a list of e-mails, you can use this:

from django.db import models
from multi_email_field.fields import MultiEmailField

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

AUTHORS

makinacom

CHANGELOG

0.5.1 (2017-08-11)

** New **

  • Czech translation (thanks @petrmifek)

** Bugfixes **

  • Fix pypi release (thanks @costela)

0.5 (2016-10-28)

  • Django 1.10 compatibility (thanks @AGASS007)

** Drop support **

  • Django < 1.8 is no longer supported

0.4 (2016-04-10)

  • Better Django (1.8/1.9) and Python (3.5) compatibility

0.3.1 (2014-12-18)

** New **

  • South is not required anymore

0.3 (2014-12-05)

** New **

  • Add support for Python 3 (thanks @Hanan-Natan)

  • Add support for Django 1.7

0.2 (2014-04-08)

** Bugfixes **

  • Stupid blocking bad call

0.1 (2014-04-07)

  • Initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-multi-email-field-0.5.1.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

django_multi_email_field-0.5.1-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file django-multi-email-field-0.5.1.tar.gz.

File metadata

File hashes

Hashes for django-multi-email-field-0.5.1.tar.gz
Algorithm Hash digest
SHA256 4a00cdfe924e572ca2df8bec71da777d04d83c73a3204a7fdf095e13afb4f0b4
MD5 b0436cf68e11fec34194d8b013c70a8f
BLAKE2b-256 1e6b3d38c71e22fe63126d7cddff186987d7c0cd823f0b3240e0b2b0bc7494b5

See more details on using hashes here.

File details

Details for the file django_multi_email_field-0.5.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_multi_email_field-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7d4bc22c1c47d0a321f2068bbb1dc1f29bd91dfb3754a2609e2016b401b781ca
MD5 e3f3110200fe0c6cc3ec35a55f72ac1f
BLAKE2b-256 ed56bc2afdaf9c7c88151348d51761a3ce3e9a695ec441f2debb984201dc104b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page