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:
parent
d6a57da971
commit
bbef14c20c
2 changed files with 4 additions and 3 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -64,8 +64,9 @@ htmlcov/
|
||||||
.pybuilder/
|
.pybuilder/
|
||||||
|
|
||||||
# Storefronts
|
# Storefronts
|
||||||
.astro/
|
node_modules/
|
||||||
.nuxt/
|
nuxt/
|
||||||
|
next/
|
||||||
|
|
||||||
# Celery
|
# Celery
|
||||||
celerybeat-schedule
|
celerybeat-schedule
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ def contact_us_email(contact_info):
|
||||||
"config": config,
|
"config": config,
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
to=[config.EMAIL_HOST_USER],
|
to=[config.EMAIL_FROM],
|
||||||
from_email=f"{config.PROJECT_NAME} <{config.EMAIL_FROM}>",
|
from_email=f"{config.PROJECT_NAME} <{config.EMAIL_FROM}>",
|
||||||
connection=connection,
|
connection=connection,
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue