Open RenzoGamero opened 5 years ago
I have a same problem. It looks like while you have [string]@[string] is thinks it's a valid email address:
So, theo@name is valid, hello@bye is also valid.....
it is valid according to the RFC. "hotmailcom" could be a valid tld, and tld are ok. Nevertheless, the DNS check fails because the domain does not exist. You should use option check_mx (need package py3dns).
validate_email.validate_email("example@hotmailcom") True validate_email.validate_email("example@hotmailcom", check_mx=True) False
example@hotmailcom is a valid email