Metadata-Version: 1.1
Name: python-simplemail
Version: 2.0.3
Summary: Simple SMTP Client For Sending Emails With And Without Attachments
Home-page: https://github.com/gerold-penz/python-simplemail
Author: Gerold Penz
Author-email: gerold@halvar.at
License: UNKNOWN
Download-URL: https://github.com/gerold-penz/python-simplemail/raw/master/dist/python-simplemail-2.0.3.tar.gz
Description: #################################################################
        Python-Simplemail - Simple SMTP Client Library For Sending Emails
        #################################################################
        
        Python-Simplemail sends emails with and without attachments
        
        
        ============
        Installation
        ============
        
        ::
        
            pip install python-simplemail
        
        
        =======
        Example
        =======
        
        
        .. code:: python
        
            import simplemail
            simplemail.Email(
                smtp_server = "localhost",
                smtp_user = "my_username",
                smtp_password = "my_password",
                from_address = u"sender@domain.at",
                to_address = u"recipient@domain.at",
                subject = u"This is the subject with umlauts (ÖÄÜß)",
                message = u"This is the short message body with umlauts (ÖÄÜß)."
            ).send()
        
        Find examples in the German Python-Forum: http://www.python-forum.de/viewtopic.php?f=11&t=3158
        
        
        ========
        Licenses
        ========
        
        - GNU Library or Lesser General Public License (LGPL)
        - MIT License
        
        
Keywords: email,simplemail,sending,attachments,e-mail,SMTP,client
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Networking
