From b77212d88fb57787c55f769bdf86b9c142e6194d Mon Sep 17 00:00:00 2001 From: Shane Date: Thu, 15 May 2025 16:49:27 +1000 Subject: [PATCH] change email alerts --- foodie_config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/foodie_config.py b/foodie_config.py index 6941934..9e14f74 100644 --- a/foodie_config.py +++ b/foodie_config.py @@ -286,10 +286,10 @@ def get_clean_source_name(source_name): # Email configuration for alerts EMAIL_CONFIG = { - 'from_email': 'hi@insiderfoodie.com', # System alerts email - 'to_email': 'hi@insiderfoodie.com', # Same email for receiving alerts + 'from_email': 'systemalerts@insiderfoodie.com', # System alerts email + 'to_email': 'systemalerts@insiderfoodie.com', # Same email for receiving alerts 'smtp_server': 'mail.insiderfoodie.com', # Your SMTP server 'smtp_port': 587, # STARTTLS port - 'smtp_username': 'hi', # SMTP username + 'smtp_username': 'systemalerts', # SMTP username 'smtp_password': os.getenv('INSIDERFOODIE_EMAIL_PASSWORD') # Store password in .env } \ No newline at end of file