Published in: PHP
URL: http://snipplr.com/view/69/ckeckmail/
Adapted from http://snipplr.com/view/69/ckeckmail/
// Tests for a valid email address and optionally tests for valid MX records, too. function is_valid_email($email, $test_mx = false) { if($test_mx) { } else return true; else return false; }
You need to login to post a comment.
