Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: $header = 'MIME-Version: 1.0' . "rn"; $header .= 'Content-type: text/html; charset=utf-8' . "rn"; $header .= 'From: another-person@parascus.de' . "rn"; $from = "another-person@parascus.de"; $host = "xxxx"; $username = "xxxx"; $password = "xxxx"; $headers = array ('From' => $from, 'Subject' => $subject, 'Content-type' => 'text/html; charset=utf-8'); require_once "Mail.php"; $smtp = Mail::factory('smtp', array […]
↧