私はzendを使用しています。私は次のコードを持っています、
....
$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
...
だから私は次々に休憩が必要です。フラッシュメッセンジャーでそれを行うことは可能ですか?はいの場合、親切なアドバイス。