如果需要额外的标头,如何防止垃圾邮件()邮件?

时间:2015-03-20 14:49:24

标签: php security email code-injection

我正试图从注射中查看我的联系表格,发现我应该寻找“\ r \ n”。然后我想到了检查

if ( preg_match( "/[\r\n]/", $headers ) 

但实际上我需要这些额外的标题:

$headers = 'From: blabla <test@test.com>' . "\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
$headers .= "Content-Transfer-Encoding: quoted-printable";

@mail($to,$subj,$msg,$headers);

有没有人知道如何保护mail()注入并仍然使用所需的标题?

提前致谢

0 个答案:

没有答案