I think send_mail
is expecting the positional argument recipients_list
to be of the type list
:
send_mail(email_template, [settings.EMAIL_HOST_USER], Email, fail_silently=False)
needs to be
send_mail(email_template, [settings.EMAIL_HOST_USER], [Email], Email, fail_silently=False)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…