所以我正在制作一个小型邮件表格,无论如何。
我想制作一系列无法通过电子邮件发送的电子邮件,
$nomail = array("hego556@yahoo.com","firevm@yahoo.com");
if($_POST["to"]!=$nomail)
mail($_POST["to"],$_POST["subject"],$_POST["message"],$headers);
else
echo "Not Allowed To Email That Email";
我该怎么做?
答案 0 :(得分:4)
答案 1 :(得分:1)
将第if($_POST["to"]!=$nomail)
行更改为if (in_array($_POST['to'], $noemail))
答案 2 :(得分:1)
$nomail = array('hego556@yahoo.com', 'firevm@yahoo.com');
if (!in_array($_POST['to'], $nomail)) {
mail($_POST["to"],$_POST["subject"],$_POST["message"],$headers);
} else {
echo 'Not Allowed To Email That Email';
}