我使用了zen。 我有以下法典:
....
$cust = test@test.com ;
$list.= Also Sent Mail to following members ;
foreach($m_list as $value)
{
$mail_to_manu = new Zend_Mail( utf-8 );
$mail_to_manu->clearFrom();
$mail_to_manu->setBodyHtml( Text )
->setFrom( noreply@test.com , test admin )
->addTo($value[ email ])
->setSubject( Test );
$mail_to_manu->send();
$list.=$value[ manufacturers_email ]. <br/> ;
}
$this->_helper->flashMessenger->addMessage( Mail send to . $cust. Successfully .$list);
$this->_redirector->gotoUrl( /index );
.....
我发出任何突破的信息。 我的祝福。
Mail send to test@test.com Successfully Also Sent Mail to following members some1@example.com some2@example.com...
我的发言也一样。
Mail send to test@test.com Successfully
Also Sent Mail to following members,
some1@example.com
some2@example.com
...
因此,我需要相互分离。 能够在闪电投递中做到这一点。 如果是,Kindly建议。