how can I allow cyrillic letters in EmailField ?
For example: allow email привет@три.ру
how can I allow cyrillic letters in EmailField ?
For example: allow email привет@три.ру
Django’s EmailField uses EmailValidator and it’s regex allows only number, alphabets and some special symbols. If you want cyrillic letters in EmailField, you can use CharField and then create custom validation and can use it within your CharField.