collective.local.sendto is a Plone product that provides a "Mailing" tab on selected content types. It provides a 'send email' form where you can select recipients from the list of members having a local role on the content.
Content types have just to implement ISendToAvailable.
In your policy product :
- Add 'collective.local.sendto' to the 'install_requires' parameter of setup.py
- Add to the configure.zcml :
< include package="collective.local.sendto" / >
< class class="my.package.content.MyContent.MyContent" >
< implements interface="collective.local.sendto.interfaces.ISendToAvailable" / >
< /class >
Roles whose you can select users as recipients are set by a site property : sendToRecipientRoles.
Product's homepage
Requirements:
· Python
· Plone CMS
What's New in This Release: [ read full changelog ]
· Use png icon (Plone 4.3 compatibility). [thomasdesvenain]
· Now we have a dexterity behaviour. [thomasdesvenain]