here's what i did.
1) pass the email through a regex filter.
2) if that passes, check if the domain name is legit using some dns goodies.
3) once the domain is verified, get the first mx record and try to connect (repeat for each mx record until successful connection, and finally abort if none can connect).
an example of the mail commands you'll execute:
telnet mx.server.address.tld 25
helo mydomainname.tld /* many domains reject helo if it doesn't also pass a domain name */
mail from:
rcpt to:
if you get a 220 from the rcpt to command, you're good. if you get a 550 etc then there was a problem. collect the return message and log it for later review.
note, you'll get a response code after each command you send. so use those to track your progress through validation.
some things to consider:
1) running this from a dynamic ip address will often result in not getting results. lots of mail providers block connections from dynamic ip addresses.
2) almost every mail server wants you to wrap the email addresses in < and >.
3) making a large number of connections to the same server is a bad idea. see #4
4) you will get blacklisted faster than you might think if you abuse this approach
there are, of course, other things to consider. frankly i spent a long time researching and creating a tool that has a very high success rate. consider the above a free consultation.
want to see my tool in action? http://www.unlocktheinbox.com/emailvalidator/
if you sign up for a free account you can check out the bulk version too.
good luck
hth