Plone:内容规则中的自定义变量

Plone: custom variable in content rule

我定义了一个敏捷内容类型 myaddon.subscriber(订阅者 = 活动参与者)。

我添加了一个内容规则以在订阅者获得批准时发送电子邮件(工作流状态更改为此)。

每个订阅者都有一个电子邮件地址(电子邮件 - 字段)。

在“编辑邮件操作”表单中,我看到我可以在 Email recipients (Required) The email where you want to send this message. To send it to different email addresses, just separate them with ,

中使用 ${user_email} 等变量

这是有效的。在我的例子中 user_email 是登录用户的电子邮件 - 批准参与者的人。状态更改时发送消息。完美。

我需要定义一个具有 myaddon.subscriber.email 值的变量 ${subscriber_email}。我怎样才能做到这一点?我试图找到一个例子。那么,如何在这个Mail Action中使用当前更改对象(订阅者)的字段(email)作为变量?

您可以使用 IContextWrapperplone.stringinterp 1.0.14+:

>>> new_context = IContextWrapper(context)(
...     email=u"subscriber@example.com"
... )

>>> class SubscriberEmailSubstitution(BaseSubstitution):
...     def safe_call(self):
...         return self.wrapper.email

>>> sm = getGlobalSiteManager()
>>> sm.registerAdapter(SubscriberEmailSubstitution, (Interface, ), IStringSubstitution, name=u"subscriber_email")

>>> getAdapter(new_context, IStringSubstitution, 'subscriber_email')()
u'subscriber@example.com'

进口:

>>> from zope.interface import Interface
>>> from plone.stringinterp.interfaces import IStringSubstitution
>>> from plone.stringinterp.interfaces import IStringSubstitutionInfo
>>> from zope.component import getGlobalSiteManager, getAdapter
>>> from plone.stringinterp.adapters import BaseSubstitution
>>> from plone.stringinterp.interfaces import IContextWrapper

查看更多 stringinterp doctests

另请参阅 eea.pdf 附加组件中的完整示例。