Metadata-Version: 2.1
Name: emailz
Version: 0.14
Summary: easy use for send emails
Home-page: https://github.com/hanzhichao/emailz
Author: Han Zhichao
Author-email: superhin@126.com
License: MIT license
Description: # emailz
        
        easy use for send emails
        
        ## Install
        ```
        pip install emailz
        ```
        
        ## Simple Use
        ```
        from emailz import email
        
        email.config(user='ivan-me@163.com',password='***')
        email.send(subject='Test', body='hi,\n,it's a test',receivers=['han_zhichao@sina.cn'])
        ```
        
        ## Use HTML
        ```
        email.send(subject='Test', html='<h2>hi,it's a test</h2>',receivers=['han_zhichao@sina.cn'])
        ```
        
        ## Use Template file
        ```
        email.send(subject='Test', template='tpl.html',receivers=['han_zhichao@sina.cn'])
        ```
        
        ## With attachments
        
        ```
        email.send(subject='Test', attachments=['tpl.html'],receivers=['han_zhichao@sina.cn'])
        ```
        
        ## ToDo
        - Smtp Server mapping
        - @email decorators
        - trigger, crontab or more features
        - theme and templates to choose
        
Keywords: emailz,email,attachments
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
