Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check if an email address is fake ?

I need to know how check if email address is valid without using link in email confirmation. How can I do this?

like image 984
xRobot Avatar asked Mar 02 '10 21:03

xRobot


People also ask

Can you find out if an email address is valid?

Just visit www.email-checker.net to use this tool. Enter the email address you would like to check and Email Checker will show you the results. Mail Tester is a web tool that let's you enter an email address to verify if there are problems with it or if it exists.


4 Answers

You can't, end of story.

Even using email confirmation only proves that the email address was valid at that time. It could then be shut down a second later!

Same for any other Internet based ID systems like OpenID, they can be set up and shut down just for the duration of the registration process. Even credit card ID can be one off since the invention of the disposable "debit" credit card.

Only government ID systems are likely to be valid for any length of time. There are major security implications when collecting and validating government ID's though, and it is different for each country.

It would be easier if all the governments could work together on one common system with a shared validation system including biometrics. Then Mossad couldn't steal passports so easily! They should set up a global community to organise it, maybe they could call it the UN? It shouldn't take long to sort out :-)

like image 67
TFD Avatar answered Oct 13 '22 10:10

TFD


You can't. There's a reason everyone does it like that. But you could use OpenID instead.

like image 29
Matthew Flaschen Avatar answered Oct 13 '22 09:10

Matthew Flaschen


There's no way to know if an email address is fake.

But you can:

  • Check if the address domain exists
  • Send an email to the address with a confirmation key to be returned
like image 29
rogeriopvl Avatar answered Oct 13 '22 11:10

rogeriopvl


You can't make sure if an email id is fake or real, but you can check if the mail has come from an original server or not.

For example: if the mail id is [email protected] then it should come from google server, but if it comes from some other server then it has a high probability of being fake. You can check the original code of email, in gmail,hotmail show original option shows full code,and in yahoo you can see the code in option show header.

like image 27
arabindamoni Avatar answered Oct 13 '22 09:10

arabindamoni