Metadata-Version: 1.1
Name: MailToolsBox
Version: 0.0.3.1
Summary: Mail Tools boxes to make developer life easier on build mail sender or even mail server
Home-page: https://www.ramai.io
Author: Rambod Ghashghai
Author-email: rambod@ramai.io
License: MIT
Download-URL: https://github.com/rambod/MailToolsBox/archive/0.0.3.1.tar.gz
Description: # MailToolsBox
        
        MailToolsBox is a Python library for dealing with Email handling in easy way.
        
        ## Installation
        
        Use the package manager [pip](https://ramai.io) to install foobar.
        
        ```
        pip install MailToolsBox
        ```
        
        ## Usage
        
        ```python
        import MailToolsBox.mailSender
        mail = MailToolsBox.mailSender.SendAgent(user_email='username@gmail.com', server_smtp_address='smtp.gmail.com', user_email_password='User Password', port=587)
        mail.send_mail(recipent_email='user@gmail.com', subject='This is Subject Text', message_Body='This is  Body Text')
        ```
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Please make sure to update tests as appropriate.
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
        
        
Keywords: Mail,Server,smtp,send,email,tools,box
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Communications :: Email
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
