21 lines
559 B
Plaintext
21 lines
559 B
Plaintext
# Email Configuration
|
|
EMAIL_USER=your-email@gmail.com
|
|
EMAIL_PASS=your-app-password
|
|
|
|
# Application Configuration
|
|
DELAY_MINUTES=5
|
|
BATCH_SIZE=10
|
|
|
|
# Optional: SMTP Configuration (if not using Gmail)
|
|
# SMTP_HOST=smtp.gmail.com
|
|
# SMTP_PORT=587
|
|
# SMTP_SECURE=false
|
|
|
|
# Custom SMTP Configuration (for using your own domain)
|
|
# Uncomment and fill these to use a custom email server instead of Gmail
|
|
#SMTP_HOST=smtp.yourdomain.com
|
|
#SMTP_PORT=587
|
|
#SMTP_SECURE=false # true for 465, false for other ports
|
|
#SMTP_USER=your-email@yourdomain.com
|
|
#SMTP_PASS=your-smtp-password
|