django-multimail
django-multimail copied to clipboard
Multiple verified e-mail accounts per user for Django
Is this project dead or not? I didn't found any other solution for this problem. And I wasn't able to get this on Django 1.11. I'm getting exception "Apps aren't...
I'm using this in a project where we assign users an initial account and do not want to allow them to change their primary address. I'm going to submit a...
``` python class EmailAddress(models.Model): … email = models.EmailField(max_length=100, unique=True) ``` But then: ``` python try: addr = EmailAddress.objects.get(user=user,email=user.email) # Provides that an address that has been just verified # without...
This fixes https://github.com/scott2b/django-multimail/issues/10