Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: ; $mail -> SMTPAuth = 'true'; $mail -> SMTPSecure = 'tls'; $mail -> SMTPKeepAlive = true; $mail -> Host = 'smtp.gmail.com'; $mail -> Port = 587; $mail -> IsHTML(true); $mail->Username = "email@gmail.com"; // SMTP username $mail->Password = "password"; // SMTP password $mail->From = "email@gmail.com"; $mail->AddAddress("email@address.com"); $mail->Subject = "#"; $mail->Body = […]
↧