We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 9 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
Mail() 与 php
用 PHP 发送批量电子邮件
使用 PHP 发送群发电子邮件
使用 PEAR 发送 10,000 多封电子邮件的最佳方式/ Mail_Queue
如何调试似乎没有运行的 PHP CRON 脚本?
执行 PHP 程序的 Cron 作业
如果您已经有数据库写入您的自己的 php 脚本并不难,只需使用默认的 mail() 或其他一些 lib(如建议的 swift)函数并将其元素放入数据库中,然后只需使用 cron 运行该脚本即可。当然,我可能是错的,因为我是 python 程序员,但在我看来,它只是一个带有循环的邮件函数和一些 SQL 查询,例如每分钟 5 封邮件。
这样做的优点:
Mail() with php
Sending bulk email in PHP
Sending mass email using PHP
Best way to send 10,000+ emails with PEAR/Mail_Queue
How can I debug a PHP CRON script that does not appear to be running?
Cron job to execute a PHP program
If you already have database writing your own php script is not that hard just use default mail() or some other lib (as suggested swift) function and put it elements form database, then just run that script with cron. Sure i may be wrong since i'm python programmer, but in the way i see its just a mailing function with cycle and some SQL query that would give for example 5 mails each minute.
Pros of that:
看一下 Swift mailer (http://swiftmailer.org) 和 phpMailer (http://phpmailer.worxware.com)。
Take a look at Swift mailer (http://swiftmailer.org) and phpMailer (http://phpmailer.worxware.com).
假设你的服务器有 mail(),你应该能够做这样的事情
assuming your server has mail(), you should just be able to do something like this