前端之家收集整理的这篇文章主要介绍了
php – 在Laravel 5.4中向多个cc收件人发送电子邮件,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个
函数发送这样的电子
邮件:
Mail::to($email)
->cc($arraywithemails)
->send(new document());
如何将电子邮件发送给多个cc用户?我检查了官方文档,但没有任何线索.
Mailable中的setAdress()
函数允许您将数组作为参数:
Mailable.php
所以您应该能够通过传递数组作为参数来使用该函数
Mail::to($email)
->cc(['name1@domain.com','name2@domain.com'])
->send(new document());
原文链接:https://www.f2er.com/laravel/134693.html