fix: sender's email addres typo in send_verification_email

wip-site
Aravinth Manivannan 2022-06-29 00:49:35 +05:30
parent b123bfa582
commit 1bab17193c
Signed by untrusted user: realaravinth
GPG Key ID: AD9F0F08E855ED88
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ def send_verification_email(request, challenge):
send_mail(
subject="[Hostea] Please confirm your email address",
message=f"Please confirm your email address {email}.\n {verification_link}",
from_email="No reply Hostea<ro-reply@exampl.org>", # TODO read from settings.py
from_email="No reply Hostea<no-reply@exampl.org>", # TODO read from settings.py
recipient_list=[email],
)