Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*[“‘][a-z0-9\-_\!\$]+[“‘]': ); $mail2->IsSMTP(); // telling the class to use SMTP $mail2->Host = "smtp.gmail.com"; // SMTP server $mail->Port = 587; $mail2->SMTPAuth = true; // turn on SMTP authentication $mail2->Username = 'adres@gmail.com'; //SMTP username $mail2->Password = 'haslo'; // SMTP password $mail2->From = 'adres@gmail.com'; $mail2->AddAddress("adres@gmail.com"); $mail2->Subject = "First PHPMailer Message"; $mail2->Body = "Hi! \n\n […]
↧