https://github.com/dashroshan/mums-mailer
📩 Email latest notices from M-UMS of IIIT-Bh to college group emails
https://github.com/dashroshan/mums-mailer
hib html-email iiit-bbsr mums web-scraping
Last synced: 9 months ago
JSON representation
📩 Email latest notices from M-UMS of IIIT-Bh to college group emails
- Host: GitHub
- URL: https://github.com/dashroshan/mums-mailer
- Owner: dashroshan
- Created: 2023-03-23T17:03:09.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-02T06:15:48.000Z (almost 3 years ago)
- Last Synced: 2025-02-12T21:17:31.064Z (11 months ago)
- Topics: hib, html-email, iiit-bbsr, mums, web-scraping
- Language: Python
- Homepage: https://hib.iiit-bh.ac.in
- Size: 2.35 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IIIT-Bh MUMS Mailer
**Latest notices from M-UMS to college group emails**
View screenshot
---

## Setup
Create a `config.json` file in the same directory as the `main.py` file with the below content:
```json
{
"latestSentNotice": "",
"loginId": "mums_id",
"loginPass": "mums_password",
"emailId": "email_id_of_sender",
"emailPass": "password_of_sender",
"toEmail": ["group1@iiit-bh.ac.in", "group2@iiit-bh.ac.in"]
}
```
Run below commands in the same directory as the `main.py` file:
```
python -m venv venv
pip install -r requirements.txt
python main.py
```