gpt4 book ai didi

codeigniter-2 - 使用 codeigniter 发送多封电子邮件

转载 作者:行者123 更新时间:2023-12-04 06:19:19 25 4
gpt4 key购买 nike

我正在为我的网站使用 Codeigniter 2。当向多个用户发送电子邮件时,在客户端(gmail、hotmail 等)上,它会在详细信息上显示所有地址,我如何隐藏地址以仅显示收件人地址。

谢谢

最佳答案

使用 bcc 发送批量电子邮件,如下所示:

function batch_email($recipients, $subject, $message) 
{
$this->email->clear(TRUE);
$this->email->from('you@yoursite.com', 'Display Name');
$this->email->to('youremailaddress@yourserver.com');
$this->email->bcc($recipients);
$this->email->subject($subject);
$this->email->message($message);

$this->email->send();

return TRUE;

}

$recipients 应该是逗号分隔的列表或数组

这意味着您将获得电子邮件的副本,但所有其他收件人都将被密件抄送,因此不会看到彼此的地址

关于codeigniter-2 - 使用 codeigniter 发送多封电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17656074/

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