我正在尝试创建一个预订系统,当用户预订和活动时,它会向所需的人发送电子邮件,现在大部分都可以使用,但我在使用电子邮件系统时遇到了问题。
该电子邮件仅发送到 $to 而不是发送到 CC:。它也是由托管服务器发送的,不显示 FROM:。我读过几页说标题的顺序很重要,但我似乎找不到正确的顺序。
这是代码
$to = 'crnflying@gmail.com';
$subject = $this->rank . ' ' . $this->first_name . ' ' . $this->last_name;
$message = '
<html>
<body>
<img style="float: right;" src="http://www.emuas.co.uk/templates/emuas-public/images/emuas-title.png" alt="emuas-logo">
<h2>EMUAS Flying Booking for ' . $this->rank . ' ' . $this->first_name . ' ' . $this->last_name . '</h2>
<table style="border-color: #666;" cellpadding="10">
<tr>
<td><strong>Start Date:</strong> </td>
<td>' . $this->flying_start_date . '</td>
</tr>
<tr>
<td><strong>End Date:</strong> </td>
<td>' . $this->flying_end_date . '</td>
</tr>
<tr>
<td><strong>Comments:</strong> </td>
<td>' . $this->flying_comments . '</td>
</tr>
</table>
</body>
</html>'
$headers = 'MIME-Version: 1.0' . '\r\n';
$headers .= 'Content-type:text/html;charset=iso-8859-1' . '\r\n';
$headers .= 'From: <' . $this->email . '>' . '\r\n';
$headers .= 'Reply-To: ' . $this->email . '\r\n';
$headers .= 'CC: ' . $this->email . '\r\n';
if (mail($to, $subject, $message, $headers)) {
echo 'Your message has been sent.'; }
else {
echo 'There was a problem sending the email.';
}
任何帮助将非常感激。拜伦