Metadata-Version: 1.1
Name: MailShake
Version: 0.8.1
Summary: Wrappers to sending emails (or testing it) from your Python app
Home-page: http://github.com/lucuma/MailShake
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 bundle 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 EmailMessage, SMTPMailer
            
            email_msg = EmailMessage(
                "Weekend getaway",
                'Here's a photo of us from our Europe trip.',
                'from@example.com',
                ['mary@example.com', 'bob@example.com'],
                
                )
            email_msg.attach("picture.jpg")
            
            mailer = SMTPMailer()
            mailer.send(email_msg)
        
        
        Severals other mailers are available for testing: `ToConsoleMailer`, `ToFileMailer`, `ToMemoryMailer` and `DummyMailer` (does nothing).
        
        .
        
        Much of the code was based on the the mail backends of Django (http://djangoproject.com). The original code was BSD licensed. See `LEGAL.md` for more details.
        
        
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
