我有一组收件人$this->recipients
,我想向所有收件人发送电子邮件而不显示彼此的电子邮件。目前,它显示电子邮件中的所有收件人。
if (count($this->recipients) > 1) {
Mail::bcc($this->recipients)
->send(new EmailNotificationMailable($this->notificationRequest));
} else {
Mail::to($this->recipients)
->send(new EmailNotificationMailable($this->notificationRequest));
}
我试过这段代码,但是当我用Mail::bcc电子邮件发送时To是空的。请为此提供有效的解决方案。我不想循环收件人数组
阿晨1998
GCT1015