我有以下代码使用 symfony2 swift_mailer 发送电子邮件
$message = \Swift_Message::newInstance()
->setSubject('tets')
->setFrom(array('request@reqa.com' => 'Test Mail'))
->addTo('test@test.com')
->addCc('test@te.com')
->addCc('test1@test1.com')
->addCc('test2@test2.com')
->setBody($html, 'text/html');
$this->get('mailer')->send($message);
我的问题是我正在从数据库中加载 addCc 电子邮件地址,因此有什么方法可以通过分隔它们来添加 CC 电子邮件地址,例如 ->addCc('test2@test2.com,test4@test4.com')
谢谢