i Zend_Mail Via haber mektubu gibi bir şey göndermeye çalışıyorum ama 12 posta sonra ben bu mesajı aldım
Ölümcül hata: C aşıldı 30 saniye Maksimum yürütme zamanı: \ Program Files \ Zend \ Apache2 \ htdocs \ forga kütüphaneye \ Zend \ Mail \ Protokol \ Abstract.php \ on line 321
Benim Kod gibidir:
$smtpHost = 'smtp.gmail.com';
$smtpConf = array(
'auth' => 'login',
'ssl' => 'tls',
'port' => '587',
'username' =>'xxxxx@xxxxx.com',
'password' => 'xxxxxxxx'
);
$transport = new Zend_Mail_Transport_Smtp($smtpHost, $smtpConf);
foreach($users as $user)
{
$mail = new Zend_Mail();
$mail->setFrom("noreply@forga.com", 'Forga');
$mail->setSubject($subject);
if($html=='on')
$mail->setBodyHtml($message);
else
$mail->setBodyText($message);
$mail->addto($user);
$transport->send($mail);
}