Metadata-Version: 1.1
Name: cmail
Version: 1.0.0
Summary: A simple command-line email client!
Home-page: https://github.com/nikhilkumarsingh/cmail
Author: Nikhil Kumar Singh
Author-email: nikhilksingh97@gmail.com
License: MIT
Description: |PyPI| |license|
        
        cmail
        =====
        
        A simple command-line email client!
        
        -  send email **with attachments**
        -  save contacts
        
        Installation
        ------------
        
        To install cmail, simply,
        
        ::
        
            $ pip install bshare
        
        Usage
        -----
        
        -  Help command:
        
           ::
        
               $ cmail -h
        
               usage: cmail.py [-h] [-m] [-c] [-r] [-a name email]
        
               A simple command-line email client!
        
               optional arguments:
                 -h, --help            show this help message and exit
                 -m, --mail            Send mail.
                 -c, --contacts        Shows the saved email contacts.
                 -r, --reset           Reset contacts list to default.
                 -a name email, --add name email
                                       Add new contact.
        
        -  To send mail:
        
           ::
        
               $ cmail -m
        
               To: example@gmail.com
               Subject: test
               Text: hi there!
               Want to attach any files? (y/n): n
               Enter username (press Enter to use default 'me'): indianpythonista@gmail.com
               Enter password:  
               Your mail was sent successfully!
        
        -  To save a contact:
        
           ::
        
               $ cmail -a me nikhilksingh97@gmail.com
               New contact saved!
        
        -  To show contacts:
        
           ::
        
               $ cmail -c
        
               +---------+--------------------------+
               | name    | email                    |
               +=========+==========================+
               | me      | nikhilksingh97@gmail.com |
               +---------+--------------------------+
               | example | example@example.com      |
               +---------+--------------------------+
        
        -  Clear contacts list:
        
           ::
        
               $ cmail -r
        
               Contacts list reset to default.
        
        .. |PyPI| image:: https://img.shields.io/badge/PyPi-v1.0.0-f39f37.svg
           :target: https://pypi.python.org/pypi/cmail
        .. |license| image:: https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000
           :target: https://github.com/nikhilkumarsingh/cmail/blob/master/LICENSE.txt
        
Keywords: email sender smtp
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
