gpt4 book ai didi

php - 完整的邮件标题

转载 作者:IT王子 更新时间:2023-10-29 00:11:39 25 4
gpt4 key购买 nike

我需要一组邮件标题附加到我的 PHP 中的 mail() 函数。我发送带有 HTML 的电子邮件,有时发送类似 Yahoo Mail 的服务阻止他们。因此,我需要确保我至少提供了正确的 header 。

我的代码:

// To send HTML mail, the 'Content-type' header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= 'From: MyCompany <welcome@mycompany.com>' . "\r\n";

还有什么要补充的吗?

最佳答案

    $headers  = "From: testsite <mail@testsite.com>\n";
$headers .= "Cc: testsite <mail@testsite.com>\n";
$headers .= "X-Sender: testsite <mail@testsite.com>\n";
$headers .= 'X-Mailer: PHP/' . phpversion();
$headers .= "X-Priority: 1\n"; // Urgent message!
$headers .= "Return-Path: mail@testsite.com\n"; // Return path for errors
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=iso-8859-1\n";

关于php - 完整的邮件标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/566182/

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