0

我正在使用 PloneFormGen 的邮件适配器,并注意到它忽略了电子邮件中的隐藏或仅服务器端字段。如何保存这些字段?

4

1 回答 1

1

此代码将仅服务器端字段从邮件正文模板中排除:https ://github.com/smcmahon/Products.PloneFormGen/blob/master/Products/PloneFormGen/content/formMailerAdapter.py#L725

在电子邮件中包含这些值的一种方法是将它们作为<div tal:content="python:request.form.get('field-name')">field value</div>. 如果您只需要邮件中的这些值,那么在模板中生成它们而不通过表单可能同样实用。

于 2013-09-11T18:31:03.833 回答