【发布时间】:2017-10-18 03:36:09
【问题描述】:
我是Laravel 的新手。
我的目标是使用Mail::send() 和to 或cc 发送多封邮件
我一直在从.env 文件中检索我存储的电子邮件:
toEmails='one@domain.ext','two@domain.ext'
从controller 检索电子邮件并使用以下代码发送:
$toEmails = env('toEmails');
$message->to(toEmails); OR $message->cc(toEmails);
以下代码不断出现错误:
MailboxHeader.php 第 345 行中的 Swift_RfcComplianceException: 给定邮箱中的地址 [[email protected],[email protected]] 不符合 RFC 2822, 3.6.2。
我一直在尝试以下对我不起作用的代码。
在.env文件中
toEmails=array('one@domain.ext','two@domain.ext'),
toEmails=one@domain.ext,two@domain.ext'
我怎样才能从中恢复。
【问题讨论】: