简体   繁体   English

HTML邮件标题

[英]HTML mail headers

I have PHP and Postfix set up at my Ubuntu server. 我在我的Ubuntu服务器上安装了PHP和Postfix。 I need to send HTML email from PHP script. 我需要从PHP脚本发送HTML电子邮件。 The email is sent just fine, but it is displayed as plain text with HTML tags included. 电子邮件发送得很好,但它显示为包含HTML标签的纯文本。 Additionally, some headers are also displayed in the email itself. 此外,一些标题也会显示在电子邮件中。

My guess is, that it has something to do with the headers. 我的猜测是,它与标题有关。 I've spent nearly a day searching for a possible solution and haven't found one. 我花了将近一天的时间寻找可能的解决方案而没有找到解决方案。

Here's the PHP code: 这是PHP代码:

$headers='';
$headers.="MIME-Version: 1.0 \r\n";
$headers.="Content-type: text/html; charset=\"UTF-8\" \r\n";
$headers.="From: ".FROM_EMAIL."\r\n";
mail($email, $vars['title'], $content, $headers);

EDIT: 编辑:

 $headers='';
 $headers.='MIME-Version: 1.0'."\r\n";
 $headers.='Content-type: text/html; charset=iso-8859-1'."\r\n";
 $headers.='From: Kinesioteip.ee<'.FROM_EMAIL.'>'."\r\n";
 $headers.='To: '.$email."\r\n";
 mail($email, $vars['title'], $content, $headers);

Still no luck... 仍然没有运气......

    $headers = 'MIME-Version: 1.0' . "\r\n";
    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

    // Additional headers
    $headers .= 'To:' . "\r\n";
    $headers .= 'From: Admin<youremail@email.com>' . "\r\n";
    // Mail it
    mail($to, $subject, $message, $headers);

can you try changing these lines 你能尝试改变这些台词吗?

$headers.="MIME-Version: 1.0 \r\n";
$headers.="Content-type: text/html; charset=\"UTF-8\" \r\n";

to

$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

and see if they work 看看它们是否有效

i think your fourth header is wrong because FROM_EMAIL variable not having '$' 我认为你的第四个标题是错误的,因为FROM_EMAIL变量没有'$'

try 尝试

        $headers.="From: ".$FROM_EMAIL."\r\n";

$vars['title'] change in to $var $ vars ['title']改为$ var

 mail($email, $vars, $content, $headers);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM