寻找开源 cron 电子邮件解决方案 - 首选 php

发布于 2024-11-07 07:58:57 字数 1539 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

波浪屿的海角声 2024-11-14 07:58:57

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:

  • You will learn something (most probably).
  • You will spend less time than searching for openSource alternative that will require some editing that will suit you needs.
待"谢繁草 2024-11-14 07:58:57

看一下 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).

飞烟轻若梦 2024-11-14 07:58:57

假设你的服务器有 mail(),你应该能够做这样的事情

$sql = ;//Sql query to grab data
$rs = ;// Result of sql query
if(sizeof($rs) > 0)
{
    foreach($rs as $item)
    {
        mail($to, $subject, $message, $headers);
        // SQL query to update rows saying its been sent out or something like that
    }
}

assuming your server has mail(), you should just be able to do something like this

$sql = ;//Sql query to grab data
$rs = ;// Result of sql query
if(sizeof($rs) > 0)
{
    foreach($rs as $item)
    {
        mail($to, $subject, $message, $headers);
        // SQL query to update rows saying its been sent out or something like that
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文