在Laravel中发送没有邮件的电子邮件,除了cc/bcc收件人

efzxgjgh  于 2023-03-31  发布在  其他
关注(0)|答案(1)|浏览(121)

我需要从Laravel发送一些测试电子邮件,并且不想使用Mail类等。我通常使用 Mail::send 函数,它工作正常。然而,我刚刚意识到,cc/bcc收件人在使用此表单时似乎不起作用。我做错了什么?
如果有用的话,我使用sendmail。

$result=Mail::send('site.emails.empty-template', ['msg'=>"Hi this is a test msg"], function ($message) {
    $message->from('noreply@me.com');
    $message->subject("A test email");
    $message->to("to@test.com");
    $message->cc("cc@test.com");
    $message->bcc(["bcc1@test.com","bcc2@test.com]);
});
yacmzcpb

yacmzcpb1#

你试过这样吗:

Mail::to($email)
    ->cc(['foo@domain.com','bar@doamin.com'])
    ->send('something');

相关问题