There is way to detect whether an email id is well-formed or not. Example abcqs@def.com
is a well-formed email address, but this may or may not be valid email account.
- Case 1 May be the domain doesnot exist (e.g.
def.com
here). - Case 2 If the domain is valid then may be the id doesnot exist for the domain (eg abcqs username doesnot exist for def domain).
If it is not valid then if we sent mail, we will get some delivery failure mail, maybe in some hours after sending the email.
I want to implement a similar concept. I want to verify if an email id belongs to a valid account, which will find out whether the account exists or not.
How to achieve it?