gpt4 book ai didi

php - PHPMailer 中的持久 SMTP 连接

转载 作者:可可西里 更新时间:2023-10-31 22:09:42 39 4
gpt4 key购买 nike

如何在 PHPMailer 中启用持久的 SMTP 连接?

我会发送很多电子邮件,因此使用持久连接可能会提高性能。

最佳答案

如果您的服务器被列入黑名单,我们真的不在乎,对吧?这就是如何实现你想要的。只需将 SMTPKeepAlive 属性设置为 true 并在批量发送后隐式调用 SmtpClose() 方法。

$phpMailer = New PHPMailer();
$phpMailer->isSMTP();
$phpMailer->SMTPKeepAlive = true;

for ( ... ) {
// Send your emails right away
[ ... ]
}

$phpMailer->SmtpClose();

关于php - PHPMailer 中的持久 SMTP 连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2333930/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com