(2003-2009) * @author Froxlor team (2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Functions * */ /** * Returns if an emailaddress is in correct format or not * * @param string The email address to check * @return bool Correct or not * @author Florian Lippert * * @changes Backported regex from SysCP 1.3 (lib/classes/Syscp/Handler/Validation.class.php) */ function validateEmail($email) { $email = strtolower($email); return filter_var($email, FILTER_VALIDATE_EMAIL); }