主题中的 Powermail 字段
Powermail field in subject
我想在收件人主题中有一个 powermail 字段。我尝试使用“Testmail 123 {testfield}
”插入它。
我为该字段指定了自定义变量名称 {testfield}
。
但我无法让它工作,甚至在主题中尝试使用 {uid82}
。
有人遇到过这个问题并且知道如何解决吗?
您可以尝试覆盖。我回答了一个(我自己的)关于如何用表单中的字段(下拉列表)覆盖收件人电子邮件的问题。
您可以在这里找到它的 TS:
https://github.com/einpraegsam/powermail/blob/develop/Configuration/TypoScript/Main/setup.txt#L146
在此处查看我的接收方解决方案:
在 powermail ext 的 slack-channel 中发布了部分问题后,Alex 发布了这个解决方案:
plugin.tx_powermail.settings.setup.receiver.overwrite.subject = COA
plugin.tx_powermail.settings.setup.receiver.overwrite.subject {
10 = TEXT
10.data = GP:tx_powermail_pi1|field|markername
10.noTrimWrap = |My subject with the value ||
}
randomresult 的答案是正确的。然而,应该可以简单地使用像这样的主题:
"New mail from {firstname}"
它不起作用的可能原因:
- 你的字段是数组类型而不是字符串
- 您的 HTML-来源与
- powermail 中的一个未知错误。如果有,请举报给伪造typo3.org
我想在收件人主题中有一个 powermail 字段。我尝试使用“Testmail 123 {testfield}
”插入它。
我为该字段指定了自定义变量名称 {testfield}
。
但我无法让它工作,甚至在主题中尝试使用 {uid82}
。
有人遇到过这个问题并且知道如何解决吗?
您可以尝试覆盖。我回答了一个(我自己的)关于如何用表单中的字段(下拉列表)覆盖收件人电子邮件的问题。
您可以在这里找到它的 TS:
https://github.com/einpraegsam/powermail/blob/develop/Configuration/TypoScript/Main/setup.txt#L146
在此处查看我的接收方解决方案:
在 powermail ext 的 slack-channel 中发布了部分问题后,Alex 发布了这个解决方案:
plugin.tx_powermail.settings.setup.receiver.overwrite.subject = COA
plugin.tx_powermail.settings.setup.receiver.overwrite.subject {
10 = TEXT
10.data = GP:tx_powermail_pi1|field|markername
10.noTrimWrap = |My subject with the value ||
}
randomresult 的答案是正确的。然而,应该可以简单地使用像这样的主题: "New mail from {firstname}"
它不起作用的可能原因: - 你的字段是数组类型而不是字符串 - 您的 HTML-来源与 - powermail 中的一个未知错误。如果有,请举报给伪造typo3.org