Changes between Initial Version and Version 1 of Ticket #31960
- Timestamp:
- Aug 28, 2020, 10:50:09 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31960 – Description
initial v1 3 3 But in reality, Django doesn't actually care : https://code.djangoproject.com/ticket/31959#ticket 4 4 5 This makes the following documentation statement inaccurate: 6 7 > "EmailField: A CharField that checks that the value is a valid email address using EmailValidator." 8 9 Source : https://docs.djangoproject.com/en/3.1/ref/models/fields/#emailfield 10 5 11 It 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.