我已经定义了一个敏捷内容类型myaddon.subscriber(订阅者=参加活动的人)。
我添加了一条内容规则,以便在订阅者获得批准后发送电子邮件(工作流状态更改为此)。
每个订阅者都有一个电子邮件地址(电子邮件地址)。
在编辑邮件操作表单中,我看到我可以在${user_email}
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
是登录用户的电子邮件 - 批准参与者的人。更改状态时会发送消息。完美。
我需要定义一个具有myaddon.subscriber.email值的变量${subscriber_email}
。我怎样才能做到这一点?我想找一个例子。那么,如何使用当前更改对象(订户)的字段(电子邮件)作为此邮件操作中的变量?
答案 0 :(得分:3)
您可以使用 plone.stringinterp 1.0.14 + 中的IContextWrapper
:
>>> 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插件中的完整工作示例。