From 1bab17193c9e25629f5aa6013bdf9fa7ba2e94ef Mon Sep 17 00:00:00 2001 From: realaravinth Date: Wed, 29 Jun 2022 00:49:35 +0530 Subject: [PATCH] fix: sender's email addres typo in send_verification_email --- accounts/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/utils.py b/accounts/utils.py index 37b981f..e8edb27 100644 --- a/accounts/utils.py +++ b/accounts/utils.py @@ -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", # TODO read from settings.py + from_email="No reply Hostea", # TODO read from settings.py recipient_list=[email], )