ColdFusion Mail:自动生成电子邮件?
我正在构建一个自动系统,我们的员工可以在其中填写心肺复苏认证表格。我需要一种方法来自动生成电子邮件并向负责人员发送提醒,告知 Xyz 人员的认证将于 X 日期到期,最好是 2 个月前、1 个月前或 2 周前。
无论如何要在冷聚变中建立这样一个自动化电子邮件系统吗?抱歉,如果这是个愚蠢的问题,我两周前才开始使用 ColdFusion。
I'm working on building a automatic system where our staff can fill out a form for CPR certifications. I need a way to generate a email automatically and send a reminder to the staff person in charge that Xyz person's certifications expire on X date, ideally something like 2 months before, 1 month before then 2 weeks before.
Anyway to build such an automated email system in cold fusion? Sorry if this is dumb question, I just started in ColdFusion TWO weeks ago.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,ColdFusion 管理员有一个内置的任务计划程序,您可以使用它来运行每晚的进程来发送您想要的电子邮件。
http://help. adobe.com/ en_US/ColdFusion/9.0/Admin/WSc3ff6d0ea77859461172e0811cbf3638e6-7fe0.html#WSc3ff6d0ea77859461172e0811cbf3638e6-7fd8
Yes, the ColdFusion administrator has a built in task scheduler that you can use to run a nightly process that will send the emails you'd like.
http://help.adobe.com/en_US/ColdFusion/9.0/Admin/WSc3ff6d0ea77859461172e0811cbf3638e6-7fe0.html#WSc3ff6d0ea77859461172e0811cbf3638e6-7fd8
您可以做的是每晚安排一个任务来检查注册日期以生成这些事件。
更简单的可能是使用 MailChimp 之类的东西,因为它已经内置了。如果需要,集成到他们的 API 是轻而易举的事。
What you can do is have a nightly scheduled task that checks against a signup date to generate these events.
Even easier might be to use something like MailChimp as it already has it built in. Integrating to their API is a breeze if needed.