我是stackoverflow的新手,找不到我的问题的答案;如何在 php 中保护我的 mail() 代码以防止人们添加最终会导致大量邮件的密件抄送?当在我的网站中输入新评论时,我的网站使用 PHP mail() 服务向我发送电子邮件。防止人们篡改它的最佳方法是什么,例如删除密件抄送?到目前为止,我所拥有的是:
function mres($input){
if (get_magic_quotes_gpc()){
$input = stripslashes($input);
}
return mysql_real_escape_string($input);
}
$name = strip_tags(mres($_POST['name']));
$comment = strip_tags(mres($_POST['comment']));
$to = 'myself@gmail.com';
$subject = 'Website - comment';
$body = 'A new comment has been entered on the website.'."\n\n"."$name".' said: '."\n\n"."$comment";
mail($to,$subject,$body);