如何使用 crontab 在 php 中每周发送电子邮件?

发布于 2024-10-21 11:54:02 字数 69 浏览 3 评论 0原文

我是 php 新手...而且我不知道如何使用 crontab 小部件...任何人都可以解释我...如何每周发送电子邮件...

i am new to php... and i dont know how to use crontab widget..can anybody explain me...how to send weekly emails...

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

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

发布评论

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

评论(2

北方的韩爷 2024-10-28 11:54:02

这将每周运行一个作业:

0 0 * * 0 /path/to/php yourscript.php

对 cron 和 crontab 的很好的介绍

This will run a job weekly:

0 0 * * 0 /path/to/php yourscript.php

Nice intro to cron and crontab.

贱贱哒 2024-10-28 11:54:02

对于您的问题,有两步解决方案

  1. 使用crontab -e命令创建cron选项卡,将以下行添加到您的cron:0 0 * * 0 php your/php /script/path/email_script.php

  2. 创建电子邮件脚本并在此处编写您的电子邮件函数。
    注意:如果您在脚本中包含文件,请确保提供完整路径“/var/www/”

TO your problem there is 2 step solution

  1. Create cron tab using crontab -e command, add a following line to your cron: 0 0 * * 0 php your/php/script/path/email_script.php

  2. Create a Email script and write yor email functions here.
    Note: If you are including a file in your script make sure that you give full path "/var/www/"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文