feat: activated email and fixed static routes

This commit is contained in:
Rushil Umaretiya 2021-02-15 15:16:15 -05:00
parent 04f8f9ad2c
commit f2af8f2399
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
2 changed files with 9 additions and 10 deletions

View File

@ -145,7 +145,11 @@ USE_TZ = True
# https://docs.djangoproject.com/en/3.1/howto/static-files/ # https://docs.djangoproject.com/en/3.1/howto/static-files/
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
if DEBUG:
STATIC_URL = '/static/' STATIC_URL = '/static/'
else:
STATIC_URL = '/launchx/static/'
CRISPY_TEMPLATE_PACK = 'bootstrap4' CRISPY_TEMPLATE_PACK = 'bootstrap4'

View File

@ -40,12 +40,10 @@ def signup(request):
def send_confirmation(request, team, members): def send_confirmation(request, team, members):
#subject = "🥳 InnovateTJ Signup Confirmation 🥳" subject = "🥳 InnovateTJ Signup Confirmation"
subject = "OK NO THIS ONE IS THE LAST EMAIL" recepients = []
#recepients = [] for member in members:
#for member in members: recepients.append(member.email)
# recepients.append(member.email)
recepients = ['rushilwiz@gmail.com', 'ssuganuma04@gmail.com']
context = { context = {
'team': team, 'team': team,
@ -62,10 +60,7 @@ def send_confirmation(request, team, members):
recepients, recepients,
reply_to=sender reply_to=sender
) )
print(request.POST.getlist('rep'))
email.attach_alternative(html_message, "text/html") email.attach_alternative(html_message, "text/html")
print("### EMAIL SENT ###")
print (recepients)
email.send(fail_silently=False) email.send(fail_silently=False)
def confirm(request): def confirm(request):