Metadata-Version: 1.1
Name: Flask-Mandrill
Version: 0.2
Summary: Adds Mandrill support to Flask applications
Home-page: http://github.com/volker48/flask-mandrill
Author: Marcus McCurdy
Author-email: marcus.mccurdy@gmail.com
License: MIT
Description: 
        Flask-Mandrill
        ==============
        
        A Flask Extension to remove some of the boiler plate encountered when
        sending emails with `Mandrill <http://www.mandrill.com/>`_
        
        Installation
        ````````````
        
        .. code:: bash
        
            $ pip install flask-mandrill
        
        
        Usage
        `````
        
        .. code:: python
        
                from flask import Flask
                from flask.ext.mandrill import Mandrill
        
                app = Flask(__name__)
                app.config['MANDRILL_API_KEY'] = 'your api key'
                mandrill = Mandrill(app)
                mandrill.send_email(
                    from_email='someone@yourdomain.com',
                    to=[{'email': 'someoneelse@someotherdomain.com'}],
                    text='Hello World'
                )
        
        
        .. :changelog:
        
        Release History
        ---------------
        
        
        0.2 (2015-01-15)
        ++++++++++++++++
        
        - Adds support for sending template emails.
        
        0.1.1 (2013-10-25)
        ++++++++++++++++++
        
        - Added config option MANDRILL_DEFAULT_FROM.
        
        0.1.0 (2012-10-25)
        ++++++++++++++++++
        
        - First release.
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
