PHP
  Home arrow PHP arrow Page 3 - Email Address Verification with PHP
Dev Shed Forums 
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Sun Developer Network 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Moblin 
JMSL Numerical Library 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PHP

Email Address Verification with PHP
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 160
    2005-02-08

    Table of Contents:
  • Email Address Verification with PHP
  • Validating the proper format of an email address
  • Validating email domains with checkdnsrr()
  • Customizing checkdnsrr()
  • Using getmxrr() for validation
  • Empowering validation with fsockopen()

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Email Address Verification with PHP - Validating email domains with checkdnsrr()


    (Page 3 of 6 )

    In order to check whether a user’s email address actually corresponds to a real domain, we should search for the proper domain records in the DNS. By doing so, we’re making sure that the supplied email address belongs to an existing domain. To do this, we can use a couple of PHP lookup functions that come in handy for addressing these problems.

    The checkdnsrr() function checks DNS records corresponding to a given Internet host name or IP address. It searches the DNS for records of a specific type corresponding to the given host, returning true if any records are found, or returning false if no records are found or if an error occurs.

    It has the following format:

    int checkdnsrr ( string host [, string type]) ;


    The function accepts the following types of records: A, MX, NS, SOA, PTR, CNAME, or ANY, with MX (Mail Exchange) as the default type. So, if no type is provided, the function will search MX records for the given host. In our case, we need to look for MX records according to the host provided within the email address. Therefore, it‘s pretty easy to code a new function, which will take care of checking the existence of the corresponding MX entries for a given host. Let’s write the function to do that:

    function checkEmail($email) {
     if(preg_match("/^( [a-zA-Z0-9] )+( [a-zA-Z0-9\._-] )*@( [a-zA-Z0-9_-] )+( [a-zA-Z0-9\._-] +)+$/" , $email)){
      list($username,$domain)=split('@',$email);
      if(!checkdnsrr($domain,'MX')) {
       return false;
      }
      return true;
     }
     return false;
    }

    The above function accepts a string as an email parameter for checking whether it fits the proper format, and whether the domain is real. In order to obtain the domain part, we split the email address into the username and domain sections, respectively, using the PHP’s split() function, as listed below:

    list($username,$domain)=split(‘@’,$email);

    Now, the $domain variable stores the corresponding domain. Since we’re interested only in this, all we need to do is pass it in as a parameter for the PHP chekdnsrr() function to determine whether it’s a real domain. It will look for the Mail Exchange record in the DNS (remember that the default type is MX), and return true if a MX record is found, which shows that the address displays a valid email domain. If the function returns false, the email domain is not valid. Obviously, an email address that displays a real email domain doesn’t necessarily imply that the user name is valid. We have a big challenge ahead.

    Once we have defined the new function, we could call it this way, assuming that we have an incoming email address from a POST form:

    $email = trim($_POST['email']);  
    if(!checkEmail($email)) { 
    echo 'Invalid email address!';
    }
    else {
     echo 'Email address is valid';
    }

    Our function is very easy to implement and powerful enough to handle the problem of verifying that we’re dealing with an existing domain. However, as stated in the PHP manual, the checkdnsrr() function is not implemented on Windows platforms. It would be useful to have a version that works on Windows for those developers building applications to be executed on Windows servers.

    There are some workarounds to deal with this. Most of these involve writing a custom version of the checkdnsrr() function. So let’s move on and write some code for this Windows-based function.

    More PHP Articles
    More By Alejandro Gervasio


       ·  As described in the article, the whole function might be included as a new method...
       · Hello,Nice but its not working for me. Its not getting any furter...
       ·  Hello, The regular expression seems to work fine. Did you try using another email...
       · You should remove spaces from the regular expression, use this...
       ·  The pattern seems to work. Have you tried with other pattern? Regards...
       · In section 6 the author opens a connection on the SMTP port directly to the domain...
       ·  Hi, The revamped version of the function is quite good. Good job.
       ·  Hi again, When I initially wrote the email verification function, I just...
       · here is the above code as a...
       · However the class is overall well defined, email format verfification is redundant...
       · can you show an example of the & usage you are describing.
       · Ok. Using the given class example, you should instantiate the class in...
       · I love the class and find it useful, but I have one problem.If the domain isn't...
       · I saw that too.when calling the last part of the class try using the...
       · Hi, If you don't want to see the warnings generated by PHP functions, just use...
       · There are a lot of allowed characters for the local part of the email address that...
       · Just thinking...This verification would fail if the client uses an external...
       · Hi all,The same concept came to my mind about making sure username validity....
       ·  That's a good reference to the allowable characters for the firs part of an email...
       · Firewalled or not, any server that accepts mail from any address on the Internet...
       · Sure I know that Simple Mail Transport Protocol is for sending email. Andthat's...
       ·  I point to myself, SMTP:Simple Mail Transfer Protocol :-)
       · The goal of email validation would be one of two things. First to catch typo's. ...
       · I've read with interest your commnents about email address verification, and I think...
       · the original regex in the article doesnt work whatsoever (returns false...
       · Thank you for the useful feedback. According to what you point in the regexp, it...
       · I agree completely that this method is very pointless. Sending an email to the user...
       · Been following this with a heck of a lot of interest. Has the 'final' code been...
       · I think someone should at least mention performance. The final solution can add...
       · Hey all,I've been looking into email verification and cannot seem to find...
       · Hello Matt,Thank you for reading and commenting on my article. With reference to...
       · Why do people write articles from the begining that is not in fuction?Stupid!
       · There's no need to post aggressive comments. If you don't like what you read, then...
       · Happening to me too.
       · Thanks for comenting on this article. I have two suggestions for this issue: first,...
       · Can anyone paste the complete codes in here? I m blurred already with different...
       · Hello,Thank you for posting your message here. Now, below there's the complete...
       · I just came across this now, I was searching for a way to validate emails in php as...
       · Thank you for your useful comments regarding my article. Yeap, according to the...
       · HI. I have tried this script and other scripts. But usually I receive the same...
       · Hi,Thank you for commenting here. The socket connection error you're getting may...
       · I think this validation overall is good in terms of showing the usability of some of...
       · First off, I'd like to thank you for posting your comments here. Now, concerning...
       · Am new to PHP programming, but am having a ball learning. Am in the early stages of...
       · Hi Tom,First off, I’d like to thank you for introducing your extensive comments...
       · I was using a simple double "if" to check for the @ + . signs, but i wanted a more...
       · Definitively, your reg expression seems to work better than the one shown in the...
       · Come ON, DevShed!I'm figuring the author MUST have tested the regex while...
       · Thank you for your feedback on my article. Yeaph, you’re correct concerning the...
       · Thanks to all of you for sharing your knowledge, it really is of great help. It...
       · Thank you for commenting on my PHP article. Now, I’d suggest you the following...
       · What about this additional function:function check ($host,$user){ $fp =...
       · Hello Martin,Thank you for posting your comments here. And with reference to...
       · Hello Alejandro,Thanks for your article.This function isn't from me. I...
       · Hi again Martin,I'd like to thank you again for your kind comments on my PHP...
       · Martin - thanks for sharing this with us. I've been looking in several places for...
       · I like the double opt-in for first-time user registration - check email has valid...
       · Hi Caroline,Thanks for posting your detailed, yet easy-to-follow description on...
     

       

    PHP ARTICLES

    - Building a Content Management System with Co...
    - Filters and Login Systems for Web Applicatio...
    - Working with the Email Class in Code Igniter
    - Building Your Own System Tray Application Us...
    - Structuring Your Projects for Web Applicatio...
    - Inserting, Updating and Deleting Database Ro...
    - Building Your Own Desktop Notepad Applicatio...
    - Web Application Security Overview
    - Working with the Active Record Class in Code...
    - Generate PDF Documents with PHP on the Windo...
    - Sending Email with PHP Networking
    - Performing Strict Validation with the Code I...
    - The preg_replace_callback() function in PHP
    - PHP Networking
    - Validating Web Forms with the Code Igniter P...





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway
    Stay green...Green IT