Joined December 2014
·

Rad

Toronto
·
·

Posted to Validate email address in Django over 1 year ago

thats deprecated now. use:

from django.core.validators import validate_email
try:
    validate_email(username)
    valid_email = True
except validate_email.ValidationError:
    valid_email = False
Achievements
1 Karma
0 Total ProTip Views