Is it possible to check the validity of an email address, i.e. if the inbox really exists, just using Python?
I know this is a tricky question because it allows bad practices (spam), and I also know that email services (e.g. gmail) have security features to prevent this (I would like details on this too).
In short, I would like to know if this is possible and how to do it (I have already seen with smtplib), and if it is not possible, I would like people who are experts in this subject to explain it to me.
Thanks.
Edit : I specify that it is not a question of checking if a string is correctly formatted as an email (it's easy to check with regex), but to know if an email box exists behind an email address.