Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只要使用下面的邮件功能发送给 Laravel 中的用户的电子邮件是已发送电子邮件的示例图像,我想生成一份电子邮件报告(电子邮件发送副本)
请找到随附的示例图片
您可以像这样使用bcc Blind Carbon Copy发送相同的邮件 :
bcc
Mail::to($request->user()) ->bcc('secret mail') ->send(new OrderShipped($order));
因此您可以获得发送给用户的邮件的精确副本,并且密件抄送信息对用户不可见。