Metadata-Version: 2.1
Name: PyMails
Version: 0.0.3
Summary: Simple tools for sending mail
Home-page: https://github.com/MrJacob12/PyMails
Author: MrJacob
Author-email: jacob@fern.fun
License: MIT
Description: ### PyMailer
        ---
        ## Required
        * [Python >= 3.8][link1]
        ## Send mail 
        ```python
        from email.mime.text import MIMEText
        from email.mime.multipart import MIMEMultipart
        from PyMails import *
        
        smtp_server = '' 
        port = ''
        sender_email = ''
        password = ''
        receiver_email = ''
        
        ## Html form
        msg = MIMEMultipart('alternative')
        msg['Subject'] = 'Test mail'
        msg['From'] = sender_email
        msg['To'] = receiver_email
        
        html = open('./html/mail.html','r+').read()
        msg.attach(MIMEText(html, 'html'))
        
        ## Without html form
        msg = MIMEText('Test')
        msg['Subject'] = 'Test mail'
        msg['From'] = sender_email
        msg['To'] = receiver_email
        
        send_mail(smtp_server,port,sender_email,password,receiver_email,msg);
        ```
        
        
        [link1]: https://www.python.org/
        
        
        
        Change Log
        ==========
        
        0.0.1 (04.04.2021)
        -------------------
        - First Release
        
Keywords: email
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
