我有一小段代码用于发送可以满足 html 代码的电子邮件消息。该消息在hotmail中完美显示,但在gmail中,所有html代码都被视为文本并显示。
以下是代码格式:-
$headers = "From: $from \r\n <$email_return>";
$headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\"";
ob_get_contents(); ?>
--PHP-mixed-<?php echo $random_hash; ?>
Content-Type: multipart/alternative; boundary="PHP-alt-<?php echo $random_hash; ?>"
--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
<?php echo $email_message;?>
--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/html; charset="utf-8"
Content-Transfer-Encoding: 7bit
<div style="text-align:left;"><img src="sitelogo.png" height="50px;"></div>
<br>
Dear <?php echo $name;?>,
<br><br>
Thanks!
<br><br><br>
<strong><i><?php echo $email_signature;?></i></strong><br><br>
--PHP-alt-<?php echo $random_hash; ?>--
<?php
$message = ob_get_clean();
$mail_sent = mail($to, $subject, $message, $headers);
echo $mail_sent ? "OK!!" : "not OK!!";
}
?>
我想知道我是否可以对 php 代码做任何事情以正确显示,否则我可能不得不放弃 html 格式。谢谢你。