Metadata-Version: 1.1
Name: easyemail
Version: 0.3.0
Summary: Simple lib abstracting email sending with smtplib.
Home-page: http://github.com/niktto/easyemail/
Author: Marek Szwalkiewicz
Author-email: marek@szwalkiewicz.waw.pl
License: Copyright (c) 2013, Marek Szwałkiewicz
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.
    * Neither the name of the <organization> nor the
      names of its contributors may be used to endorse or promote products
      derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Description: easyemail
        =========
        
        Small lib abstracting creation and sending emails with smtplib. This is work in
        progress, please do not use it in production.
        
        WARNING
        -------
        
        From version 0.3 and up I stopped supporting template rendering inside of the
        library. Now you need to render html / text on your side and use attach_text.
        
        Installation
        ------------
        
        Install with pip::
        
            $ pip install easyemail
        
        Testing
        -------
        
        To run tests, you'll need `mako` and `jinja2` libraries that are not included
        in requirements in normal setup.
        
        You can run tests that way::
        
            $ python setup.py test
        
        Issues and questions
        --------------------
        
        Have a bug? Please create an issue on GitHub!
        
        https://github.com/niktto/easyemail/issues
        
        
        Contributing
        ------------
        
        EasyEmail is an open source software and your contribution is very much
        appreciated.
        
        1. Check for
           open issues https://github.com/niktto/easyemail/issues or
           open a fresh issue https://github.com/niktto/easyemail/issues/new
           to start a discussion around a feature idea or a bug.
        2. Fork the
           repository on Github https://github.com/niktto/easyemail
           and make your changes.
        3. Follow these rules: PEP8, PEP257 and The
           Zen of Python.
        4. Make sure to add yourself to AUTHORS and send a pull request.
        
        
        Licence
        -------
        
        EasyEmail is available under the New BSD License. See
        LICENSE https://github.com/niktto/easyemail/blob/master/LICENSE
        file.
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
