PHP:当有人回复邮件时,将回复文本添加到邮件中

时间:2013-11-21 14:05:58

标签: php email

我发送邮件给客户并回复电子邮件ID,当客户点击回复时,应添加预定义文本以包含正文,客户将在此之后键入包含。 怎么做到这一点?

1 个答案:

答案 0 :(得分:1)

您需要将标头设置为能够通过sender email

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

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