Home > Back-end >  Find if an email is registered or not
Find if an email is registered or not

Time:10-09

Im new to stack overflow and i just signed up.

I have written a program to generate a random email. I need to see if this email is available, on icloud, gmail, and outlook. Is there a way to do this in python?

CodePudding user response:

I think you are looking for py3-validate-email 1.0.7

CodePudding user response:

Looks like you are looking for an email validator.

This was one of the good ones I came across:

https://isitarealemail.com/#documentation

Note: You would have to add all the domains you would like to test. Not sure if any tool automates that.

  • Related