eMail address validity

luke2012

Well-Known Member
Licensed User
Longtime User
Hi to all,
there is a way to test il a email address exist (without sending mail) ?
 

mc73

Well-Known Member
Licensed User
Longtime User
You can use an invisible webView with some javascript code, or another tool to silently connect to the server you just specified and try verifying the address. Yet, please keep in mind, that most servers deny a reply, in order to avoid spammers getting valid addresses. I think you can a) stay with a regEx check and b) send a confirmation email.
 
Upvote 0

yttrium

Active Member
Licensed User
Longtime User
You can use an invisible webView with some javascript code, or another tool to silently connect to the server you just specified and try verifying the address. Yet, please keep in mind, that most servers deny a reply, in order to avoid spammers getting valid addresses. I think you can a) stay with a regEx check and b) send a confirmation email.

On the contrary, said website only lets you check five emails per hour. So, regEx would be the best way, most likely.
 
Upvote 0
Top