Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图通过我的 CodeIgniter 网站应用程序上的 SMTP 一次发送 1000 多封电子邮件,现在,我循环将其发送给每个收件人(相同的内容),但 PHP 脚本超时。
在脚本顶部添加:
set_time_limit(0);
如果您遇到超时问题,最好使用某种邮件队列功能。或者添加您自己的逻辑以使用 cron 作业在特定时间发送一定数量的电子邮件。看看邮件队列。
http://pear.php.net/package/Mail_Queue/redirected