phpmailer und gmail-SMTP-FEHLER: Failed to connect to server: Netzwerk ist nicht erreichbar (101) SMTP connect() failed

Ich brauche Hilfe bitte
das ist mein code:

require 'PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->isSMTP();
$mail->Host = "smtp.gmail.com";
$mail->SMTPDebug = 2;
$mail->SMTPAuth = true;

$mail->SMTPSecure = "tls";
$mail->Port = 587;

$mail->Username = '[email protected]';
$mail->Password = 'somepass';
$mail->addAddress('[email protected]', 'Josh Adams');
$mail->Subject = 'PHPMailer GMail SMTP test';
$body = 'This is the HTML message body in bold!';
$mail->MsgHTML($body);
if (!$mail->send()) {
    echo "Mailer Error: " . $mail->ErrorInfo;
} else {
    echo "Message sent!";
}

und ich bekomme diese Fehlermeldung:
2013-12-11 15:15:02 SMTP-FEHLER: Failed to connect to server: Netzwerk ist nicht erreichbar (101) SMTP connect() failed. Mailer Error: SMTP connect() failed.

jede Hilfe bitte?

InformationsquelleAutor kilinkis | 2013-12-11
Schreibe einen Kommentar