Drupal 6 日历发送邮件通知
我正在使用 Drupal 6 和日历模块,我想知道如何允许用户将自己的事件放在日历上,我需要在事件发生前 24 小时向事件创建者添加电子邮件通知。
我想这可以通过运行 sql 查询的 cron 作业来完成,但我需要该 sql 查询...
如果有人也可以提出更好的解决方案,那就太好了!
I am using Drupal 6 and the calendar module, I wonder how can I allow users to put their own events on the calendar, I need to add email notification 24 hours before the event to the event creator.
I guess it can be done with a cron job running sql query but I need that sql query please...
if anyone also can suggest a better solution that wil be great !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我创建了一个函数来选择事件及其创建者并循环它们并发送邮件,并在 hook_cron() 内调用此函数,这样就可以正常工作
I made a function to select the events and their creators and loop on them and send mail, and called this function inside the hook_cron() it worked fine this way