我在注册表格的以下部分中检查电子邮件是否有效,但是我想通过向用户发送消息来检查电子邮件是否确实存在,如果不存在,请删除该电子邮件。我有一些已经注册的用户,但我认为他们提供的电子邮件地址无效。
if (empty($first) || empty($last) || empty($email) || empty($uid)|| empty($password) || empty($country)) {
echo "<meta http-equiv='refresh' content='0;url=../signup.php?signup2=empty'>";
exit();
} else {
//Check if input characters are valid
if (!preg_match("/^[a-zA-Z]*$/", $first) || !preg_match("/^[a-zA-Z]*$/", $last)) {
echo "<meta http-equiv='refresh' content='0;url=../signup.php?signup2=invalid'>";
exit();
} else {
//Checking for valid emails
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
echo "<meta http-equiv='refresh' content='0;url=../signup.php?signup2=bademail'>";
exit();
} else {