同一电子邮件中的HTML和纯文本

时间:2015-03-11 12:20:35

标签: php email html-email

我正在构建基于PHP的简报应用程序。我知道在html旁边发送纯文本版本的电子邮件也是一种好习惯。我的问题是如何在实践中做到这一点?只是简单地把一个放在另一个之下?像:

<p style="font-weight:bold;">This is a newsletter!</p>
<p style="color:red;">
   You can read awesome things here!
   <br/>
   <a href="www.the-awesome-site.com">check out us on the web!</a>
</p>

This is a newsletter\r\n
You can read awesome things here!\r\n
check out us on the web: www.the-awesome-site.com

不知道这两个互相干扰?我的意思是,如果邮件程序客户端可以理解HTML,那么具有几乎相同内容的纯文本将在邮件结尾处混淆。或者,如果客户端无法解析html,那么用户将在人类友好的纯文本之前看到困扰原始HTML源代码。有什么方法可以根据情况隐藏无用的一个?如果重要的话,我将使用PHPMailer。

1 个答案:

答案 0 :(得分:4)

PHPMailer是一个很好用的类,因为它可以检测电子邮件客户端何时不支持HTML。

Check out this code snippet. It should help a little.

require("PHPMailer-master/PHPMailerAutoload.php");

$mail = new PHPMailer();
$mail->IsSMTP();

$mail->Host = "mail.somemailserver.com";  
$mail->SMTPAuth = false;


$mail->From = $someemail;
$mail->FromName = "Who ever";
$mail->AddAddress($email);
$mail->AddCC($anotheremail);

$mail->WordWrap = 50;



$mail->IsHTML(true);

$mail->Subject = "Some subject";

$mail->Body    = "<html>Content goes here</html>";


//if the client doesn't support html email use
$mail->AltBody = "Content";

if(!$mail->Send())
{
   echo "Message could not be sent. <p>";
   echo "Mailer Error: " . $mail->ErrorInfo;
   exit;
}

通过使用$ mail-&gt; AltBody,您可以发送纯文本电子邮件。希望这有帮助!