PHPMailer kalıcı SMTP bağlantılarını etkinleştirmek nasıl?
Muhtemelen performans kazancı elde edecek kalıcı bağlantıları ile ben, çok e-posta göndereceğiz.
Biz gerçekten sunucu kara listeye alırsa burada bakım, doğru değil mi? Bu ne istediğinizi elde etmek için nasıl. Sadece true
SMTPKeepAlive
özelliği ayarlanmış ve toplu gönderdikten sonra, SmtpClose()
yöntemi dolaylı diyoruz.
$phpMailer = New PHPMailer();
$phpMailer->isSMTP();
$phpMailer->SMTPKeepAlive = true;
for ( ... ) {
// Send your emails right away
[ ... ]
}
$phpMailer->SmtpClose();
What do you mean by persistent SMTP connection?
First if you send a Email you are connected to the Server until it finishes the job. Secondly if you wanna send many emails (Probably your server will be in the blacklist), you write a loop in your PHP code, whitch fetches all Email adresses and passes them to the phpmailer and finaly sendts them. Thats how i would send mass mails.