Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: #!/usr/bin/python import smtplib server = 'smtp.gmail.com' port = 587 sender = '$senderemail' password = '$mypassword' recipient = 'receivingemail' subject = 'Gmail SMTP Test 2' body = 'This is our weekly data' attachment= ("magic.CSV.csvfile") "Sends an e-mail to the specified recipient." body = "" + body + attachment + "" headers […]
↧