Changes between Initial Version and Version 1 of Ticket #29605
- Timestamp:
- Jul 27, 2018, 2:59:12 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29605
- Property Component Forms → Core (Other)
- Property Resolution → wontfix
- Property Status new → closed
- Property Summary Email Validation failed → AllowEmailValidator to accept an address with a human readable prefix
-
Ticket #29605 – Description
initial v1 1 I have some email with from address 'Name Surname <developer-accounts@domain.com>' which contain in EmailField()when I try save in admin form I get exception what tell me my email not valid. This example email stored in my DB2 1 I have some email with from address `'Name Surname <developer-accounts@domain.com>'` which contain in `EmailField` when I try save in admin form I get exception what tell me my email not valid. This example email stored in my DB 2 {{{ 3 3 from django.core.validators import validate_email 4 4 validate_email('Name Surname <developer-accounts@domain.com>') 5 5 }}} 6 6 7 7 {{{