我发送了一封电子邮件,邮件($ message)是HTML格式
之前我使用过不同的脚本(HTML MIME MAIL),我只是通过这样做将它设置为HTML:setHTML($ message)。
使用此脚本,我不确定如何将$ message设置为在电子邮件中以HTML格式输出。
require_once "Mail.php";
$from = "noreply@domain.com";
$host = "mail.domain.com";
$username = "username";
$password = "password";
$headers = array ('From' => $from,
'To' => $emailto,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
array ('host' => $host,
'auth' => true,
'username' => $username,
'password' => $password));
$mail = $smtp->send($emailto, $headers, $message);
if (PEAR::isError($mail)) {
echo("<p>" . $mail->getMessage() . "</p>");
} else {
echo("<p>Message successfully sent!</p>");
}
答案 0 :(得分:1)
你错过了标有html的标题,请尝试这样做:
$headers = array ('From' => $from,
'To' => $emailto,
'Subject' => $subject,
'MIME-Version' => '1.0',
'Content-type' => 'text/html; charset=iso-8859-1');