Metadata-Version: 1.0
Name: Shake-Mail
Version: 0.2
Summary: Simple front end to the smtplib and email modules, to simplify sending emails in your Shake app.
Home-page: http://github.com/lucuma/Shake-Mail
Author: Juan-Pablo Scaletti
Author-email: juanpablo@lucumalabs.com
License: MIT license (http://www.opensource.org/licenses/mit-license.php)
Description: 
        Shake-Mail
        ----------------------------------------------
        
        Simple front end to the smtplib and email modules, to simplify sending
        email from your Shake app.
        
        Usage:
            
            import shake_mail
            
            message = shake_mail.Message(
                From = "me@example.com",
                To = "you@example.com",
                Subject = "My Vacation",
                )
            message.Body = open("letter.txt", "rb").read()
            message.attach("picture.jpg")
            
            mailer = shake_mail.Mailer('mail.example.com')
            mailer.send(message)
        
        
        Adapted from the mailer module by Ryan Ginstrom
        http://pypi.python.org/pypi/mailer/0.5
        Used under the MIT license
        
        :Copyright © 2010-2011 by Lúcuma labs (http://lucumalabs.com).
        :MIT License. (http://www.opensource.org/licenses/mit-license.php)
        
Platform: UNKNOWN
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
