Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: e a mail server (e.g. Google mail server) and call it mailserver mailServer = "smtp.gmail.com" mailPort = 587 #my gmail and password receiver = "<iwood@uwo.ca>" sender = "<thisemailisbestemail123@gmail.com>" username = "thisemailisbestemail123@gmail.com" password = "bestpass" # Create socket called clientSocket and establish a TCP connection with mailserver clientSocket = socket(AF_INET, SOCK_STREAM) […]
↧