Ja zrobić żeby strona sprawdzała czy dany Mail istniej
tak jak na stonie link(kliknij)
function isValidEmail($mail) { $wholeexp = '/^(.+?)@(([a-z0-9\.-]+?)\.[a-z]{2,5})$/i'; $userexp = "/^[a-z0-9\~\\!\#\$\%\&\(\)\-\_\+\=\[\]\;\:\'\"\,\.\/]+$/i"; /* //if you have a lunix/unix server then uncomment this block of code // on windows servers MX isn't declared and checkdnsrr() function don't work // so if your server is running on windows this method will validate email address only againts regular expresion if (preg_match($wholeexp, $mail, $regs)) { $username = $regs[1]; $host = $regs[2]; if (checkdnsrr($host, MX)) { if (preg_match($userexp, $username)) { return true; } else { return false; } } else { return false; } } else { return false; } */ // if your server is running under linux/unix os then comment code block below return true; else return false; }