Private
Public Access
1
0

fixing NK import summary error

This commit is contained in:
2025-06-19 07:59:00 +02:00
parent 66d519526c
commit ba0b86a79d
3 changed files with 10 additions and 2 deletions

View File

@@ -960,7 +960,12 @@ def rower_register_view(request):
email = EmailMessage(
mail_subject, message, to=[to_email]
)
email.send()
try:
email.send()
except Exception as e:
# send through alternative email server
pass
return render(request, 'confirmemailpage.html', {'address': to_email})
# login(request,theuser)