Hi all - I was wondering if in any of your travels and adventures online, you've come across a free script to check the validity of an email address (more like a list of email addresses, preferably 100's at a time) Let me know! Thanks, Jason
you can build it yourself with php the idea is simple do an array with desired checkings $emailstocheck = array("em1", "em2"); then do a loop with filter_var($email, FILTER_VALIDATE_EMAIL); I would do it for 20$
You can also use javascript in this case, which might be more appropriate. I am not sure you can find any free but I can always suggest you to look into hotscripts.com. There are many script which we do not know and might be discovered by you.