Commit 3c414d8e authored by Imran Hussain's avatar Imran Hussain
Browse files

disable emailing associates as we are just annoying them when they have already paid

parent 9cd38037
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -383,8 +383,9 @@ def reminderMenu():
			print(str(student[0]) + " last paid: " + str(student[1]))
		for soc in societiesBad:
			print(str(soc[0]) + " last paid: " + str(soc[1]))
		for ass in associatesBad:
			print(str(ass[0]) + " last paid: " + str(ass[1]))
		print("Not emailing associates as we don't have a programatic way of checking their status.")
		#for ass in associatesBad:
		#	print(str(ass[0]) + " last paid: " + str(ass[1]))
		reminderMenu()
	if option == "2":
		if len(studentsBad) > 0:
@@ -400,8 +401,9 @@ def reminderMenu():
		if len(societiesBad) > 0:
			sendReminderEmail(societiesBad)
	if option == "2.3":
		if len(associatesBad) > 0:
			sendReminderEmail(associatesBad)
		print("Not emailing associates as we don't have a programatic way of checking their status.")
		#if len(associatesBad) > 0:
		#	sendReminderEmail(associatesBad)
	if option == "0":
		mainMenu()
	else: