mirror of
https://github.com/Rushilwiz/launchx.git
synced 2025-04-05 04:30:19 -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/
|
||||
|
||||
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'
|
||||
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue
Block a user