mirror of
https://github.com/Rushilwiz/launchx.git
synced 2025-04-05 12:40:18 -04:00
feat: activated email and fixed static routes
This commit is contained in:
parent
04f8f9ad2c
commit
f2af8f2399
|
@ -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')
|
||||||
STATIC_URL = '/static/'
|
|
||||||
|
if DEBUG:
|
||||||
|
STATIC_URL = '/static/'
|
||||||
|
else:
|
||||||
|
STATIC_URL = '/launchx/static/'
|
||||||
|
|
||||||
CRISPY_TEMPLATE_PACK = 'bootstrap4'
|
CRISPY_TEMPLATE_PACK = 'bootstrap4'
|
||||||
|
|
||||||
|
|
|
@ -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):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user