我正在为应用程序处理邮箱,在发送电子邮件后,我想将其附加到“已发送”邮箱中,并且能够检索收件人(to,cc和bcc)。
这适用于以下代码...
$envelope = imap_mail_compose([
'subject' => 'test',
'from' => 'from@test.fr',
'to' => 'to@test.fr',
'cc' => 'cc@test.fr',
'bcc' => 'bcc@test.fr'
], $body);
imap_append($imap, '{ssl0.ovh.net:xxx/ssl}SENT', $envelope);
......除了密送。如果我追加后检索电子邮件标题,似乎没有密件抄送,而应该有! (我可以检索到和cc地址)。
我找不到原因。我犯了错误吗?我误解了什么吗?
编辑:确定,使用imap_mail_compose bcc仍然不可见(那么为什么我们可以添加“bcc”参数,如果它没有被使用?)。那么,有没有办法追加Bcc地址?
答案 0 :(得分:0)
好的,找到了技巧。
我使用imap_mail_compose创建全局消息字符串,如下所示。
然后,我将Bcc地址附加到该字符串中:
// The Bcc string, from an array
$bcc = implode(',', $data['bcc']);
// create the global message string
$envelopeStr = imap_mail_compose($data, $body);
// Appending the Bcc addresses manually
if (!empty($bcc)) {
// Putting the Bcc just before the main recipients
// There will be a "To:" parameter for sure, we could have used "Subject:" too
$pos = strpos($envelopeStr , "To:");
// Adding the string
if ($pos !== false) {
$bccStr = "Bcc: " . $bcc . "\r\n";
$envelopeStr = substr_replace($envelopeStr , $bccStr, $pos, 0);
}
}