I have a for loop which loops through and sends an email each loop. Right now im using thread.sleep() but I want the user to still be able to interact with the program, just del
You can spin off a new thread to send the emails so you don't lock the UI thread.