在 phpmailer 中添加 HTML 格式

2022-08-30 19:25:21

我正在使用PHP邮件程序将在线表单直接发送到电子邮件。我想像这样编辑表单:

$message = '<p>The following request was sent from: '</p>;
$message .= '<p>Name: '.$name.'</p><br />';
$message .= '<p>Phone: '.$phone.'</p><br />';
$message .= '<p>Email: '.$email.'</p><br />';

但是,在我收到的电子邮件中,我得到了,等。不是我想要的格式,而是实际的HTML。它一直对我有用,然后我意识到我正在使用股票PHP邮件功能。不确定PHP邮件程序是否具有不同的参数,或者我只是在这里缺少小参数?<p><br />

我在哪里设置文本/html 的标题?

    $mail = new PHPMailer();
    $mail -> IsSMTP();
    $mail -> Host = "---";
    $mail -> Port = 25;
    $mail -> SMTPAuth = false;
    $mail -> Username = EMAIL_USER;
    $mail -> Password = EMAIL_PASS;
    $mail -> FromName = $from_name;
    $mail -> From = $from;
    $mail -> Subject = $subject;
    $mail -> Body = $message;
    $mail -> AddAddress("---");

    $result = $mail -> Send();

答案 1

在PHP邮件中,您需要在下面设置

$mail->IsHTML(true);

注意:表示您的 PHPMailer 对象。$mail

参考链接: PHPMailer


答案 2

默认情况下,PHP 函数为 。mail()text/plain

在标头中,将 to 更改为 并尝试。mail()content-typetext/html

例:

<?php 
    $body = "<html>\n"; 
    $body .= "<body style=\"font-family:Verdana, Verdana, Geneva, sans-serif; font-size:12px; color:#666666;\">\n"; 
    $body = $message; 
    $body .= "</body>\n"; 
    $body .= "</html>\n"; 

    $headers  = "From: My site<noreply@example.com>\r\n"; 
    $headers .= "Reply-To: info@example.com\r\n"; 
    $headers .= "Return-Path: info@example.com\r\n"; 
    $headers .= "X-Mailer: Drupal\n"; 
    $headers .= 'MIME-Version: 1.0' . "\n"; 
    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; 

    return mail($recipient, $subject, $message, $headers); 
?>

PHP Mailer:

您需要设置:IsHTML(true)

$mail->IsHTML(true);

推荐