我发送邮件给客户并回复电子邮件ID,当客户点击回复时,应添加预定义文本以包含正文,客户将在此之后键入包含。 怎么做到这一点?
答案 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);
?>