我是Plone的新手,正在Plone 4.1中使用表单。我想覆盖表单邮件程序主题行,因此它是来自表单主题字段的输入,然后是表单名称的字符串。我不知道该怎么写。
答案 0 :(得分:1)
转到表格,单击“目录”,单击邮件适配器,单击“编辑,单击“替代”,然后将此行插入到“主题表达式”字段中:
python: folder.Title() + ': ' + request.form['subjekt']
subjekt
代表要获取其值的字段名称。
以下是有关可用上下文变量的有用文档:
https://docs.plone.org/working-with-content/managing-content/ploneformgen/override_defaults.html