Changes between Initial Version and Version 1 of Ticket #31960


Ignore:
Timestamp:
Aug 28, 2020, 10:50:09 AM (4 years ago)
Author:
James Pic
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31960 – Description

    initial v1  
    33But in reality, Django doesn't actually care : https://code.djangoproject.com/ticket/31959#ticket
    44
     5This makes the following documentation statement inaccurate:
     6
     7> "EmailField: A CharField that checks that the value is a valid email address using EmailValidator."
     8
     9Source : https://docs.djangoproject.com/en/3.1/ref/models/fields/#emailfield
     10
    511It would be only fair to users to document that the EmailValidator will let invalid emails through, which will be the cause of SMTPError, and that people who don't want invalid emails in their EmailField must override and fix Django's default behaviour.
Back to Top