Features: 1) Update email recipient to use EMAIL_FROM configuration;

Fixes:

Extra: 1) Add `node_modules/`, `nuxt/`, and `next/` to `.gitignore`.
This commit is contained in:
Egor Pavlovich Gorbunov 2025-06-27 16:12:13 +03:00
parent d6a57da971
commit bbef14c20c
2 changed files with 4 additions and 3 deletions

5
.gitignore vendored
View file

@ -64,8 +64,9 @@ htmlcov/
.pybuilder/
# Storefronts
.astro/
.nuxt/
node_modules/
nuxt/
next/
# Celery
celerybeat-schedule

View file

@ -30,7 +30,7 @@ def contact_us_email(contact_info):
"config": config,
},
),
to=[config.EMAIL_HOST_USER],
to=[config.EMAIL_FROM],
from_email=f"{config.PROJECT_NAME} <{config.EMAIL_FROM}>",
connection=connection,
)