gpt4 book ai didi

php - 使用php邮件功能有限制吗?

转载 作者:可可西里 更新时间:2023-11-01 12:45:48 24 4
gpt4 key购买 nike

我正在使用 php 和 mysql。

我将发送 10k++(万多)封电子邮件来更新我的订阅者,这是我第一次发送它们。我将使用 php 邮件功能,基本上我会这样做:

首先从数据库中获取数据:

Select name, email FROM data

之后,使用while循环发送数据:

while($r = mysql_fetch_assoc($exe)){
...
if($mail){
echo "success<br>";
} else {
echo "failed<br>";
}
}
echo "Sent all";

我包含 if..else 语句,以确保每封电子邮件都成功发送。有什么我需要照顾的吗?发送给 10K++ 用户时会遇到任何问题吗?

您要发送的电子邮件数量是否有限制?

最佳答案

请注意来自 mail documentation 的这条注释:

Note: It is worth noting that the mail() function is not suitable for larger volumes of email in a loop. This function opens and closes an SMTP socket for each email, which is not very efficient.
For the sending of large amounts of email, see the » PEAR::Mail, and » PEAR::Mail_Queue packages.

关于php - 使用php邮件功能有限制吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1543153/

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