0

代码正在为 gmail、yahoo 查找,但对于公司 ID,它显示的是 HTML 标签而不是实际消息.. 如下所示

Content-type: text/xhtml; charset=iso-8859-1

From: info@test.net

X-Mailer: php
Message-Id: <20130424005039.50FF769A98@test.=myweb.org>
Date: Wed, 24 Apr 2013 05:50:39 -0500 (CDT)
  1. 当在客户端 PC 中提交代码时,当我们使用公司 ID 以外的代码时,代码工作正常,只有公司 ID 存在问题。
  2. 如果邮件从其他主机 (php) 发送到公司 ID,则 html 再次显示正常。我不知道我现在该怎么办。

来自 php.net 代码的片段。

$to .= 'mytomailid@mail.com';

// subject
$subject = 'Birthday Reminders for August';
// message
$message = '
<html>
<head>
  <title>Birthday Reminders for August</title>
</head>
<body>
  <p>Here are the birthdays upcoming in August!</p>
  <table>
    <tr>
      <th>Person</th><th>Day</th><th>Month</th><th>Year</th>
    </tr>
    <tr>
      <td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
    </tr>
    <tr>
      <td>Sally</td><td>17th</td><td>August</td><td>1973</td>
    </tr>
  </table>
</body>
</html>
';

// To send HTML mail, the Content-type header must be set
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";
?>
4

1 回答 1

0

您应该尝试使用库PHP Mailer进行邮件发送。它处理了这种类型的标题条件。

于 2013-04-24T11:20:25.523 回答