如何编写php脚本在截止日期前5天向用户发送提醒电子邮件?
我在 codeigniter (PHP) 中编写了一个邮件函数来向用户发送邮件。现在我想在过期日期前 5 天发送提醒邮件。如果有人有任何想法请在这里发帖...
I have written a mail function in codeigniter (PHP) to send mail to users. Now I want to send a reminder mail 5 days before their expire date. If anybody have any idea please post here...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个 cron 作业(如果您使用 Windows,则创建计划任务)来运行脚本并每天/每小时(或适合您需要的任何其他时间范围)运行它。
谷歌上有很多关于如何设置 cron 作业的教程,看看这个 例如
Create a cron job (or scheduled task if you use Windows) to run your script and run it every day / hour (or any other timeframe that suits your needs).
There are plenty of tutorials on google how to setup cron job, check this out for example