我使用此代码示例从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
如何删除这个额外的斜杠?
由于
答案 0 :(得分:0)
来自http://php.net/manual/en/function.mail.php:
希望它会对你有所帮助。主题 要发送的电子邮件的主题。
警告主题必须满足»RFC 2047。