PHP 通过电子邮件自动通知,其背后的逻辑
例如,我希望在未来的设定日期和时间通过电子邮件通知我的客户。即使没有人访问该网站,PHP 也能做到这一点吗?
我应该提出什么条件?我应该将其保存在会话中吗?我只是想知道这方面的逻辑。有什么建议吗?
谢谢。
For example, I want my client to be notify via email on a set date and time in the future. Can PHP do this even if nobody is visiting the website?
What condition should I make? Should I save this on session, etc... I just want to know the logic on this. Any suggestions?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果服务器使用Linux,那么您可以使用
cron jobs
If the server is using Linux, then you can use
cron jobs
您需要使用 cron 作业。也许这不是你问题的答案,但 Facebook 也使用这个系统。关于 facebook 开源平台的非常有趣的信息 https://developers.facebook.com/opensource/
You need to use cron job. And maybe its not the answer to your question but facebook uses this system too. Very interesting info about facebook's opensource platform https://developers.facebook.com/opensource/
如果您在 PHP 中使用 cron(或等效)作业,则可以执行此操作。 cron 作业每 x 次执行一个页面。
You can do this if you use a cron (or equivalent) job with PHP. A cron job executes a page every x time.