django-multi-email-field
django-multi-email-field copied to clipboard
Field and widget to store a list of e-mail addresses in a Django project
I got error in Django 4.0.x as below. ugettext_lazy becomes gettext_lazy. Do you have a plan to enhance code? ``` from django.utils.translation import ugettext_lazy as _ ImportError: cannot import name...
This package will raise this error `ImportError: cannot import name 'ugettext_lazy' from 'django.utils.translation'` when run with Django40. I have resolved this issue in this PR.
Saw this warning: ``` multi_email_field/forms.py:10: RemovedInDjango40Warning: django.utils.translation.ugettext_lazy() is deprecated in favor of django.utils.translation.gettext_lazy(). message = _('Enter valid email addresses.') ```
How should multiple emails be separated in a user form? Should the user separate the emails with comma's or do they need to give it in a list format like...
not sure this should be a patch release aka 0.7.1 or 0.8.0?
I tested it with Django 5.0.4, and it worked fine.