Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: // enable SMTP authentication $mail->Host = "smtpout.secureserver.net"; // sets the SMTP server $mail->Port = 25; // set the SMTP port for the GMAIL server $mail->Username = "usr"; // SMTP account username $mail->Password = "password"; // SMTP account password $mail->SetFrom($_POST["from"], 'First Last'); $mail->AddReplyTo($_POST["from"],"First Last"); $mail->AddAttachment("images/phpmailer.gif"); // attachment $mail->Subject = "PHPMailer Test […]
↧