如何使用 Pylons / Mako 模板从独立的 python 脚本制作 HTML 电子邮件?
我基本上是在问如何将 plyons 和 mako 文件“包含”在独立的 python 脚本中?
我有一个正在运行的网站,但我想做的是使用 Mako templatetes 来格式化我通过 cron 脚本启动的电子邮件。我想以这种方式重用尽可能多的代码,因为有时网站中的操作会生成电子邮件。
我可以让 cron 脚本访问某个 URL,然后使用 pylons 生成电子邮件,但该 hack 有许多明显的问题。
I'm basically asking how to "include" the plyons and mako files in a stand alone python script?
I have a working web site, but what I want to do is use Mako templetes to format emails that I initiate through a cron script. I want to do it this way to reuse as much code as possible, as sometimes actions in the web site generate emails.
I could make the cron script access a certain URL, and then use pylons to generate the email, but that hack has many obvious problems.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有使用 Pylons 的经验,但只需渲染一个模板即可。
“独立”方法基本上是 Mako 与 CherryPy 等许多 WSGI 框架一起使用的方式。
Mako 文档
I have no experience with Pylons but to just render a template you can
The "standalone" approach is basically the way Mako gets used with a lot of WSGI frameworks like CherryPy.
Mako Docs