我正试图从注射中查看我的联系表格,发现我应该寻找“\ 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()注入并仍然使用所需的标题?
提前致谢