Verify E-mail address

  • Thread starter Thread starter Nikolay Podkolzin
  • Start date Start date
N

Nikolay Podkolzin

Good afternoon, community!



How you help me? I need to know, how could I verify e-mail address? I don't
mean ( for example: (e-mail address removed) it is valid or not) I wanna know is that
real world E-mail or not?



How could I do that?



Thank you in advance!
 
Hi, Paul!

Thanks for your reply. But I need to check it e-mail in "live e-mail
verification", without the long secret link...

Any Thoughts?
 
Thanks for your reply. But I need to check it e-mail in "live e-mail
verification", without the long secret link...

Any Thoughts?

My thought is that it's not possible without some cooperation from the
adressee to respond to you
 
Nikolay Podkolzin said:
Hi, Paul!

Thanks for your reply. But I need to check it e-mail in "live e-mail
verification", without the long secret link...

If that was possible, then it would be a great anti-spam method as most of
it comes from fake addresses.
In theory you could send a message to it and then see if you get an NDR
back, but it could be a bit complicated and there is of course the
inevitable delay.

If just the domain is fake then it would be easier as you would fail at the
DNS lookup stage...
 
Nikolay said:
Good afternoon, community!



How you help me? I need to know, how could I verify e-mail address? I don't
mean ( for example: (e-mail address removed) it is valid or not) I wanna know is that
real world E-mail or not?



How could I do that?



Thank you in advance!

There are two types of email verifications:

1. verify that the email address is legal, in the sense that it follows
the syntax that email addresses follows
2. verify that the email address is live, in that email you send to it
will end up in someones inbox.

The first type can easily be done through regular expressions, and you
can find many such examples on http://www.regexlib.com

The other one, however, is harder. The only sure way to do this is to
send that someone an email, containing a link back to your site. The
link would contain something that would allow your site to figure out
which user the link was sent to. The user would then be required to
click on the link to verify that the email address was correct.

There is, fortunately, no other way of doing this. Due to recent years
spamfest, all methods of silently verifying that an email address exists
on a server and corresponds to someones inbox is typically disabled
these days.
 
Nikolay said:
Thanks for your reply. But I need to check it e-mail in "live e-mail
verification", without the long secret link...

Not possible.

Spammers would love to do so.

The SMTP protocol actually has a VRFY command to
do just that.

But it is turned off on most mail servers to make
life just a little bit more difficult for spammers.

Arme
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top