Metadata-Version: 2.1
Name: testMail
Version: 2.0
Summary: testing mail using smtp
Home-page: https://github.com/FKgk/testMail
Author: FKgk
Author-email: rhkd865@gmail.com
License: MIT
Description: # testMail
        
        ## How to install
        ```
        git clone https://github.com/FKgk/testMail.git
        ```
        or
        ```
        pip install testMail
        ```
        
        ## Dependency
        - this package don't need any reqiurements
        - need built-in module (email, smtplib, re)
        
        ## Example
        ```
        from testMail import Mail
        
        mail = Mail("sender email", "app password")
        
        # support one string and list
        mail.send("receiver email", "title", "content")
        
        mail.close()
        ```
        
        ### If you want to check validation
        ```
        mail.valid("email")
        ```
        - return true or raise WrongEmailError
        
        ## Reference
        - [smtp](https://docs.python.org/3/library/smtplib.html)
        - [google app password](https://support.google.com/accounts/answer/185833?hl=ko)
        
        ## PYPI
        - https://pypi.org/project/testMail/1.3/
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
