Metadata-Version: 2.1
Name: python_mail_sender
Version: 0.1.3
Summary: Mail Sender Module that helps you send your emails perfectly.
Home-page: https://github.com/mansy996/mail_sender
Author: Ahmed Mansy
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Mail Sender Module
<!-- TABLE OF CONTENTS -->
<details>
  <summary>Table of Contents</summary>
  <ol>
    <li><a href="#about-the-Module">About The Module</a></li>
    <li><a href="#getting-started">Getting Started</a></li>
  </ol>
</details>

<!-- ABOUT THE MODULE -->
## About The Module

Mail Sender Module is python module that helps you send your emails perfectly.

This module is built with Python >= 3.7

<p align="right">(<a href="#top">back to top</a>)</p>

<!-- GETTING STARTED -->
## Getting Started

### How To Install
* using python pip
  ```sh
  pip install git+https://github.com/mansy996/mail_sender
  ```
### How To Use
To get started with this module just clone it into your repo then do the following:
* define `SENDER_ADDR` & `SENDER_PASS` & `SMTP_PORT` & `SMTP_SERVER` env variables
  * Using python:
    ```python
    import os
    sender_address = os.environ.get("SENDER_ADDR")
    sender_pass = os.environ.get("SENDER_PASS")
    smtp_port = os.environ.get("SMTP_PORT")
    smtp_server = os.environ.get("SMTP_SERVER")
    ```
  * Or using the os terminal.
  * Or using the venv activate file.
* initialize an instance from the `MailSendera` class
    ```python
    from mail_sender import MailSendera
    mail_sender = MailSendera()
    ```
* call the `send_mail` method and provide the mail attributes:
    Receiver Address | Subject | Email Content | attached files
    :------------ | :-------------| :-------------| :-------------|
    noreply@gmail.com | any subject |  content message | attached file list |
    ```python
    mail_sender.send_mail(
        receiver_address = "test@gmail.com", subject = "email subject",
        content = "message content", attach_files = (("filename.ext", file),)
    )
    ```

<p align="right">(<a href="#top">back to top</a>)</p>

