Metadata-Version: 1.1
Name: collective.local.sendto
Version: 1.2
Summary: Adds a 'Mailing' tab to selected content types that allows to select users that have a role on the content and send them a wysiwyg composed email. By Ecreall.
Home-page: http://svn.plone.org/svn/collective/
Author: Thomas Desvenain
Author-email: thomas.desvenain@gmail.com
License: GPL
Description: Introduction
        ============
        
        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.
        
        COMPATIBILITY
        -------------
        
        Plone 4.0, Plone 4.1
        Wisywig behaviour needs Products.TinyMCE >= 1.0
        
        Changelog
        =========
        
        1.2 (2013-02-13)
        ----------------
        
        - Set a default subject.
          Link towards the document is now explicit in a default body.
          [thomasdesvenain]
        
        - Link to 'view' for typeActionViewInListing types.
          [thomasdesvenain]
        
        
        1.1.1 (2012-12-05)
        ------------------
        
        - Fix: works with C security implementation.
          [thomasdesvenain]
        
        
        1.1 (2012-12-05)
        ----------------
        
        - Danish translation.
          [tmog]
        
        - Use global roles.
          [thomasdesvenain]
        
        - Filter roles on those which can view content.
          [thomasdesvenain]
        
        
        1.0.0 (2011-04-06)
        ------------------
        
        - Initial release.
          [thomasdesvenain]
        
Keywords: communication,auth
Platform: UNKNOWN
Classifier: Framework :: Plone
Classifier: Programming Language :: Python
