这是在 bluehost 上 - 我尝试向 gmail 以外的其他客户发送邮件,但我仍然遇到同样的问题:我所有的 html 都显示为纯文本/标签。没有被渲染成 html。
$to = '###@gmail.com';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= "From: $from \r\n";
$headers = array(
'From' => "###@####.com",
'Cc' => "####@gmail.com",
'Subject' => "Your Reminder From Remindmeto.org",
);
$body = '<html><body>';
$body .= '<h1>From the mists of memory I speak...</h1>';
$body .= "$image";
$body .= '</body></html>';
$mail = Mail::factory("mail");
$mail->send($to, $headers, $body);