From f2af8f23991cbd92408579063dc82ae908bc24a9 Mon Sep 17 00:00:00 2001 From: Rushil Umaretiya Date: Mon, 15 Feb 2021 15:16:15 -0500 Subject: [PATCH] feat: activated email and fixed static routes --- config/settings.py | 6 +++++- innovate/views.py | 13 ++++--------- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/config/settings.py b/config/settings.py index 6312ccc..331f404 100644 --- a/config/settings.py +++ b/config/settings.py @@ -145,7 +145,11 @@ USE_TZ = True # https://docs.djangoproject.com/en/3.1/howto/static-files/ STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') -STATIC_URL = '/static/' + +if DEBUG: + STATIC_URL = '/static/' +else: + STATIC_URL = '/launchx/static/' CRISPY_TEMPLATE_PACK = 'bootstrap4' diff --git a/innovate/views.py b/innovate/views.py index 7e9c563..94eea11 100644 --- a/innovate/views.py +++ b/innovate/views.py @@ -40,12 +40,10 @@ def signup(request): def send_confirmation(request, team, members): - #subject = "🥳 InnovateTJ Signup Confirmation 🥳" - subject = "OK NO THIS ONE IS THE LAST EMAIL" - #recepients = [] - #for member in members: - # recepients.append(member.email) - recepients = ['rushilwiz@gmail.com', 'ssuganuma04@gmail.com'] + subject = "🥳 InnovateTJ Signup Confirmation" + recepients = [] + for member in members: + recepients.append(member.email) context = { 'team': team, @@ -62,10 +60,7 @@ def send_confirmation(request, team, members): recepients, reply_to=sender ) - print(request.POST.getlist('rep')) email.attach_alternative(html_message, "text/html") - print("### EMAIL SENT ###") - print (recepients) email.send(fail_silently=False) def confirm(request):