Changes between Initial Version and Version 1 of Ticket #29605


Ignore:
Timestamp:
Jul 27, 2018, 2:59:12 PM (6 years ago)
Author:
Tim Graham
Comment:

I think this is by design and I don't see it changing. In fact ,there's another ticket to relax the validation to use HTML5 validation (#26423). You should use a custom field and validator for your use case.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29605

    • Property Component FormsCore (Other)
    • Property Resolutionwontfix
    • Property Status newclosed
    • Property Summary Email Validation failedAllowEmailValidator 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 DB
    2 
     1I 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{{{
    33from django.core.validators import validate_email
    44validate_email('Name Surname <developer-accounts@domain.com>')
    5 
     5}}}
    66
    77{{{
Back to Top