gpt4 book ai didi

PHP SMTP BCC,不通过

转载 作者:可可西里 更新时间:2023-11-01 00:37:20 25 4
gpt4 key购买 nike

不会收到 BCC/CC(在标题中)中指定的收件人。我发现有几个帖子有类似的问题,没有答案......

代码如下,问题是:“你们有遇到过类似的问题吗?”

require_once "Mail.php";

$host = "mail.mailserver.com";
$username = "notification@yourhost.com";
$password = "getyourownpassword";

$headers = array ('From' => "User Name <$username>",
'To' => $to_,
'Cc' => 'Patty <patty@gmail.com>',
'Subject' => $subj_,
'Content-type' => 'text/html');

$smtp = Mail::factory('smtp',
array ('host' => $host,
'auth' => true,
'username' => $username,
'password' => $password));

$mail = $smtp->send($to_, $headers, $mail_msg);

最佳答案

看起来您正在使用 PEAR 邮件模块。如果你阅读 here您将看到关于传递给 pear 模块的 header 的讨论仅指定消息的外观,而不是实际接收消息的人。如果您添加一个 CC header ,该人将显示为被 CC,但要实际接收它,他需要被添加到收件人数组中。对于密件抄送,您将它们添加到收件人数组中,但不要在标题中显示它们。

关于PHP SMTP BCC,不通过,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4319095/

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