Metadata-Version: 1.0
Name: collective.confirmableforms
Version: 1.1
Summary: A Plone add on to simplify form confirmation by e-mail.
Home-page: http://svn.plone.org/svn/collective/
Author: UNKNOWN
Author-email: UNKNOWN
License: GPL
Description: Introduction
        ============
        
        This product adds a new emailer for Products.PloneFormGen. Our emailer
        is based on the default PFG one, but will first send an email to the
        person who submitted the form so he can confirm his email address.
        
        This products relies on PloneFromGen and collective.depositbox to
        store the data waiting for validation.
        
        Installing
        ==========
        
        Add ``collective.confirmableforms`` to your buildout and install it
        via Zope quick installer or Plone add-on control panel page.
        
        >>> portal_url = self.portal.absolute_url()
        >>> self.login_as_manager()
        >>> self.browser.open(portal_url)
        >>> self.browser.getLink('Site Setup').click()
        >>> self.browser.getLink('Add-ons').click()
        
        >>> installer_url = self.browser.url
        >>> form = self.browser.getForm(index=1)
        >>> form.getControl(name='products:list').value = ['PloneFormGen']
        >>> form.submit('Activate')
        
        
        
        Changelog
        =========
        
        1.1 (2012-09-07)
        ----------------
        
        - Nothing changed yet.
        
        
        1.0 (2012-09-06)
        ----------------
        
        - Initial release
        
Platform: UNKNOWN
Classifier: Framework :: Plone
Classifier: Programming Language :: Python
