本文介绍了Laravel邮件bcc的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用默认的Laravel Mail
类发送电子邮件。
I am using the default Laravel Mail
class to send emails.
我正在尝试添加bcc我自己,但是当我添加密件抄送电子邮件是完全不发送。
这是我的代码:
I am trying to add bcc to myself, but when I add a bcc the email is not send at all.
Here is my code:
Mail::send(
'emails.order.order',
array(
'dateTime' => $dateTime,
'items' => $items
),
function($message) use ($toEmail, $toName) {
$message->from('[email protected]', 'My Company');
$message->to($toEmail, $toName);
$message->bcc('[email protected]');
$message->subject('New order');
}
);
推荐答案
我发现问题。
我没有使用正确的参数 $ message-> bcc('[email protected]');
我不得不写电子邮件和名称: $ message-> bcc('[email protected]','我的名字');
与我使用 $ message->到($ toEmail,$ toName);
I had to write email AND name: $message->bcc('[email protected]', 'My Name');
The same way as I use $message->to($toEmail, $toName);
这篇关于Laravel邮件bcc的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!