Skip to content

Latest commit

 

History

History
41 lines (22 loc) · 1.09 KB

File metadata and controls

41 lines (22 loc) · 1.09 KB

Mail.py

A Python script for sending automated emails for code clause.

Setup

To set up and use the script, follow these steps:

  1. Ensure that Python is installed on your system. If not, you can download it from Python's official website.

  2. Open your terminal or command prompt and navigate to the directory containing mail.py.

  3. Run the following command to install the necessary dependencies:

    pip install -r requirements.txt
    

Usage

  1. Once you have set up the script, you can use it by following these steps:

  2. Open mail.py in your text editor and update the email, password, recipient, and subject variables with your own information.

  3. Optionally, you can also update the body variable with your desired email content.

  4. Save your changes and close the text editor.

Dependencies

The script requires the following Python packages:

  • A simple, minimal SMTP module for sending emails in Python.
  • tkinter for Gui interface.

To install these dependencies, you can run the following command:

pip install smtp
pip install tkinter