如何使用 crontab 在 php 中每周发送电子邮件?
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这将每周运行一个作业:
对 cron 和 crontab 的很好的介绍。
This will run a job weekly:
Nice intro to cron and crontab.
对于您的问题,有两步解决方案
使用
crontab -e
命令创建cron选项卡,将以下行添加到您的cron:0 0 * * 0 php your/php /script/path/email_script.php
创建电子邮件脚本并在此处编写您的电子邮件函数。
注意:如果您在脚本中包含文件,请确保提供完整路径“/var/www/”
TO your problem there is 2 step solution
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
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/"