From e9a8cf150503a2a3c169faca112b59463407e1dd Mon Sep 17 00:00:00 2001 From: Laszlo Rafael <rlacko99@gmail.com> Date: Tue, 1 Mar 2022 00:07:01 +0100 Subject: [PATCH] Remove extra column from EmailMessage constructor --- src/common/email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/email.py b/src/common/email.py index 7148077..d4eab9c 100644 --- a/src/common/email.py +++ b/src/common/email.py @@ -29,7 +29,7 @@ def send_out_mail(subject, message, SENDER_EMAIL, receiver_email): body=message, from_email=SENDER_EMAIL, to=[receiver_email, ], - reply_to=[SENDER_EMAIL], + reply_to=[SENDER_EMAIL] ) email.send() -- GitLab