gpt4 book ai didi

php - HTML 电子邮件无法正确显示基于 Godaddy Web 的邮件

转载 作者:行者123 更新时间:2023-12-04 21:23:10 29 4
gpt4 key购买 nike

<分区>

我正在使用以下 PHP 代码发送电子邮件。我已经在 Outlook 和其他地方进行了测试,一切正常。但是,如果我将电子邮件发送给使用基于 Godaddy 网络的电子邮件查看器的人,则会出现 2 个问题:

  • 不显示 FROM 电子邮件地址
  • 不显示 HTML 电子邮件,而是显示 HTML 代码

这已经在多台机器和浏览器上使用多个基于 godaddy 的帐户进行了验证。

这是我用来发送电子邮件的代码:

//build and send the email      
$to = $email;
$subject = 'Confirm your subscription';
$message =( "<html>\r\n");
$message .=( "<head>\r\n");
$message .=( "<title>Confirm</title>\r\n");
$message .=( "</head>\r\n");
$message .=( "<body>\r\n");
$message .=( "<h2>Thank You for registering</h2>\r\n");
$message .=( "<p>To complete your registration, please click the link below.</p>\r\n");
$message .=(" <p><a href=\"http://www.site.com/confirmation.php?confirm=$visitor_hash\">Click here to confirm your interest.</a></p>\r\n");
$message .=( "</body>\r\n");
$message .=( "</html>\r\n");

$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
$headers .= "From: Site<info@site.com>\r\n";
mail($to, $subject, $message, $headers);

有什么想法吗?

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com