Here's the function:
function isValidemail($iVal){
return ( preg_match("/(.*)\@(.*)\.([A-z]{2,8})$/i",$iVal) ) ? 1 : 0;
}
also is there a way to say "Finger" an address & actually have it work ?
I'm looking to block spam & want email addresses that are valid & actually exist.