Compare commits

..

2 Commits

Author SHA1 Message Date
0f2df17584 Update Gitignore
- Add srv/env.py
2024-10-25 10:49:59 +02:00
8934f58292 Update env.py
- Add CSV_PATH
- Add CSV_Prefix
_ Add History_years
2024-10-25 10:49:37 +02:00
2 changed files with 7 additions and 4 deletions

2
.gitignore vendored
View File

@ -160,4 +160,4 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/ #.idea/
config/env.py src/env.py

View File

@ -1,8 +1,11 @@
# Configuration file with SMTP settings and CSV path settings
SMTP_SERVER = "smtp.example.com" SMTP_SERVER = "smtp.example.com"
SMTP_PORT = 25 SMTP_PORT = 25
SENDER_EMAIL = "santa@example.com" SENDER_EMAIL = "santa@example.com"
CSV_FILE_PATH = r"secret_santa_DB.csv" CSV_PATH = r"path\to\your\csv\files" # Path to the CSV files
DRAW_PER_PERSON = 2 # Choose 1 or 2 recipients per person CSV_PREFIX = r"secret_santa_DB" # Prefix for CSV files
HISTORY_YEARS = 2 # Number of past years to consider in the draw
DRAW_PER_PERSON = 2 # Number of recipients per person
# Email content # Email content
EMAIL_SUBJECT = "Secret Santa {year} Draw" EMAIL_SUBJECT = "Secret Santa {year} Draw"
@ -15,4 +18,4 @@ Feel free to use your imagination and make their Christmas magical!
Merry Christmas! Merry Christmas!
This email was sent automatically, please do not reply. This email was sent automatically, please do not reply.
""" """