Metadata-Version: 1.1
Name: MailShake
Version: 0.9.4
Summary: Dramatically simplify sending email from your python app
Home-page: http://github.com/lucuma/Voodoo
Author: Juan-Pablo Scaletti
Author-email: juanpablo@lucumalabs.com
License: MIT license (http://www.opensource.org/licenses/mit-license.php)
Description: =================
        MailShake
        =================
        
        Although Python makes sending email relatively easy via the smtplib module, this library provides a couple of light wrappers over it.
        
        These wrappers are provided to make sending email extra quick, to make it easy to test email sending during development, and to provide support for platforms that can’t use SMTP.
        
        Usage::
        
            from mailshake import SMTPMailer
        
            mailer = SMTPMailer()
            mailer.send(
                subject='Hi',
                text_content='Hello world!',
                from_email='from@example.com',
                to=['mary@example.com', 'bob@example.com']
            )
        
        You can also compose several messages and send them at the same time::
        
            from mailshake import SMTPMailer, EmailMessage
        
            mailer = SMTPMailer()
            messages = []
            email_msg = EmailMessage(
                "Weekend getaway",
                'Here's a photo of us from our trip.',
                'from@example.com',
                ['mary@example.com', 'bob@example.com']
            )
            email_msg.attach("picture.jpg")
            messages.append(email_msg)
        
            …
        
            mailer.send_messages(messages)
        
        
        Mailers availiable:
            * SMTPMailer
            * AmazonSESMailer
        
        and:
        
            * ToConsoleMailer (prints the emails in the console)
            * ToFileMailer (save the emails in a file)
            * ToMemoryMailer (for testing)
            * DummyMailer (does nothing)
        
        --------
        [MIT License](http://www.opensource.org/licenses/mit-license.php).
        
        © 2011 by [Lúcuma labs](http://lucumalabs.com).
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: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
