电子邮件主题的额外斜杠

时间:2015-01-14 14:46:05

标签: php email sendmail

我使用此代码示例从php发送电子邮件

<?php
$to      = 'nobody@example.com';
$subject = $_POST['subject']; //"the \test subject's";
$message = $_POST['body']; //'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?>

但是当我收到电子邮件时,主题就像那样显示

the \\test subject's

如何删除这个额外的斜杠?

由于

1 个答案:

答案 0 :(得分:0)

来自http://php.net/manual/en/function.mail.php

  

主题   要发送的电子邮件的主题。

     

警告主题必须满足»RFC 2047。

RFC 2047:http://www.faqs.org/rfcs/rfc2047.html

希望它会对你有所帮助。