使用PHP发送电子邮件和SMTP - 文本和文本HTML

时间:2013-04-03 13:01:43

标签: php email smtp sendmail html-email

我有一个代码用于向我的收件人发送PHP电子邮件。我找到了一种向他们发送HTML电子邮件的方法,包括'Content-Type'=>标题部分中的“text / html”。我的问题是那些接收我的电子邮件的人如何才能显示HTML电子邮件?他们会看到HTML代码吗?如果是这样,我的邮件应用程序如何决定,何时发送平原以及何时发送HTML格式?

以下是我的代码:

<?php
 require_once "Mail.php";

 $from = "Example <example@example.com>";
 $to = "example@gmail.com";
 $subject = "Hi!";
 $body = '<html>This is a HTML message...</html>'

 $host = "smtp";
 $username = "user";
 $password = "pass";

 $headers = array ('From' => $from,
   'To' => $to,
   'Content-Type' => "text/html",
   'Subject' => $subject);
 $smtp = Mail::factory('smtp',
   array ('host' => $host,
     'auth' => true,
     'username' => $username,
     'password' => $password));

 $mail = $smtp->send($to, $headers, $body);

 if (PEAR::isError($mail)) {
   echo("<p>" . $mail->getMessage() . "</p>");
  } else {
   echo("<p>Message successfully sent!</p>");
  }
 ?>

1 个答案:

答案 0 :(得分:1)

这是我在项目中经常使用的课程:http://phpmailer.worxware.com/ 它非常好,允许发送HTML和TEXT电子邮件并支持附件。 如果仅限于内置函数,则应包含定义HTML和TEXT版本的起始位置的边界。更多信息:http://webcheatsheet.com/PHP/send_email_text_html_attachment.php