|
Page 3 of 3
Using the function
To make everything fit together the complete function is:
function validateEmail($email){ list($name,$Domain) = split('@',$email); $result=getmxrr($Domain,$POFFS); if(!$result){$POFFS[0]=$Domain;} $timeout=5; $oldErrorLevel= error_reporting(!E_WARNING); $result=false; foreach($POFFS as $PO ) { $sock = fsockopen($PO, 25, $errno, $errstr, $timeout); if($sock){ fwrite($sock, "HELO Mydomain.com\n"); $response= getResponse($sock); fwrite($sock, "MAIL FROM: <me@mydomain.com>\n"); $response= getResponse($sock); fwrite($sock,"RCPT TO: <".$email.">\n"); $response= getResponse($sock); list($code,$msg)=explode(' ',$response); fwrite($sock,"RSET\n"); $response= getResponse($sock); fwrite($sock,"quit\n"); fclose($sock); if ($code == '250') { $result= true; break; } } } error_reporting($oldErrorLevel); return $result; }
To use the function you simply write something like:
if( validateEmail("name@domain")){ echo "valid"; }else{ echo "not valid"; }
There is a small possibility that if you use this sort of validation too often at any given site then you might be blacklisted, but as long as the frequency is low enough not to annoy it should be fine.
To access the code for this project, once you have registered, click on CodeBin.
If you would like to be informed about new articles on I Programmer you can either follow us on Twitter, on Facebook or you can subscribe to our weekly newsletter.
Skinning Windows Media Player
WMP skins
A skin is a customisable user interface. It gives users the opportunity to build their own interfaces for a variety of reasons.
The Windows Media Player WMP supports “skinning” from ve [ ... ]
|
How to monitor remote traffic
We have already looked at the basics of Microsoft Network Monitor 3.3, which is free-to-download software that works under Windows. Its operation is easy enough to understand - it reads the pa [ ... ]
| | Other Projects |
<ASIN:0470872497>
<ASIN:1593271735>
<ASIN:1590599063>
<ASIN:0596514018>
|