Metadata-Version: 1.1
Name: send_email_message
Version: 0.1.3
Summary: Very simple and unicode friendly way to send email message from Python code.
Home-page: https://github.com/denis-ryzhkov/send_email_message
Author: Denis Ryzhkov
Author-email: denisr@denisr.com
License: MIT
Description: 
        Usage::
        
            sudo pip install send_email_message
            from send_email_message import send_email_message
        
            email_config = dict(
                host='smtp.gmail.com',
                port=587,
                tls=True, // Or ssl=True with another port.
                user='admin@example.com',
                password='password',
                from_name='Example Site',
                # Default: encoding='utf-8'
            )
        
            send_email_message(
                to='denisr@denisr.com',
                subject='Example News',
                text='Please see http://example.com/',
                html='<html><body>Please see <a href="http://example.com/">example.com</a></body></html>',
                **email_config
            )
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
