Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: // enable SMTP authentication $mail->Port = 25; // set the SMTP server port $mail->Host = "smtp.gmail.com"; // SMTP server $mail->Username = "yuliy.x.95@gmail.com"; // SMTP server username $mail->Password = "mypassword"; // SMTP server password $mail->IsSendmail(); // tell the class to use Sendmail $mail->AddReplyTo("k.yuliy@yahoo.it","First Last"); $mail->From = "name@domain.com"; $mail->FromName = "First Las […]
↧