werner.sch
Aktives Mitglied
Hallo zusammen,
wir haben den Shop von 4.05 auf 4.06 Build 17 und PHP von 5.5 auf 7.3.6 geupdatet.
Seit dem funktioniert der Mailversand vom Shop nicht mehr.
Die Mails werden via SMTP versendet was in der Vergangenheit auch funktioniert hat.
Im Log wird folgendes Angezeigt.
"Email konnte nicht versendet werden! Fehler: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting"
In einem alten Eintag haben wir die Info gefunden, dass das folgende Testskript bei der Fehlersuche helfen kann.
<?php
require __DIR__ . '/includes/globalinclude.php';
echo (extension_loaded('openssl')?'SSL loaded':'SSL not loaded')."\n";
try {
$mail = new PHPMailer();
$mail->Host = 'ssl://smtp.gmail.com:465';
$mail->SMTPDebug = 4;
$mail->smtpConnect();
$mail->smtpClose();
} catch (Exception $e) {
var_dump($e);
}
Die haben wir ausgeführt und folgendes erhalten.
SSL loaded 2020-05-19 19:11:20 Connection: opening to ssl://smtp.gmail.com:465, timeout=300, options=array()
2020-05-19 19:11:20 Connection: opened
2020-05-19 19:11:20 SMTP INBOUND: "220 smtp.gmail.com ESMTP c193sm621927wme.37 - gsmtp"
2020-05-19 19:11:20 SERVER -> CLIENT: 220 smtp.gmail.com ESMTP c193sm621927wme.37 - gsmtp
2020-05-19 19:11:20 CLIENT -> SERVER: EHLO www.der-kerzentunker.de
2020-05-19 19:11:20 SMTP INBOUND: "250-smtp.gmail.com at your service, [134.119.234.102]"
2020-05-19 19:11:20 SMTP INBOUND: "250-SIZE 35882577"
2020-05-19 19:11:20 SMTP INBOUND: "250-8BITMIME"
2020-05-19 19:11:20 SMTP INBOUND: "250-AUTH LOGIN PLAIN XOAUTH2 PLAIN-CLIENTTOKEN OAUTHBEARER XOAUTH"
2020-05-19 19:11:20 SMTP INBOUND: "250-ENHANCEDSTATUSCODES"
2020-05-19 19:11:20 SMTP INBOUND: "250-PIPELINING"
2020-05-19 19:11:20 SMTP INBOUND: "250-CHUNKING"
2020-05-19 19:11:20 SMTP INBOUND: "250 SMTPUTF8"
2020-05-19 19:11:20 SERVER -> CLIENT: 250-smtp.gmail.com at your service, [134.119.234.102]250-SIZE 35882577250-8BITMIME250-AUTH LOGIN PLAIN XOAUTH2 PLAIN-CLIENTTOKEN OAUTHBEARER XOAUTH250-ENHANCEDSTATUSCODES250-PIPELINING250-CHUNKING250 SMTPUTF8
2020-05-19 19:11:20 CLIENT -> SERVER: QUIT
2020-05-19 19:11:20 SMTP INBOUND: "221 2.0.0 closing connection c193sm621927wme.37 - gsmtp"
2020-05-19 19:11:20 SERVER -> CLIENT: 221 2.0.0 closing connection c193sm621927wme.37 - gsmtp
2020-05-19 19:11:20 Connection: closed
Kann uns jemand bei der Fehlerbehebung behilflich sein?
Gruß
Werner
wir haben den Shop von 4.05 auf 4.06 Build 17 und PHP von 5.5 auf 7.3.6 geupdatet.
Seit dem funktioniert der Mailversand vom Shop nicht mehr.
Die Mails werden via SMTP versendet was in der Vergangenheit auch funktioniert hat.
Im Log wird folgendes Angezeigt.
"Email konnte nicht versendet werden! Fehler: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting"
In einem alten Eintag haben wir die Info gefunden, dass das folgende Testskript bei der Fehlersuche helfen kann.
<?php
require __DIR__ . '/includes/globalinclude.php';
echo (extension_loaded('openssl')?'SSL loaded':'SSL not loaded')."\n";
try {
$mail = new PHPMailer();
$mail->Host = 'ssl://smtp.gmail.com:465';
$mail->SMTPDebug = 4;
$mail->smtpConnect();
$mail->smtpClose();
} catch (Exception $e) {
var_dump($e);
}
Die haben wir ausgeführt und folgendes erhalten.
SSL loaded 2020-05-19 19:11:20 Connection: opening to ssl://smtp.gmail.com:465, timeout=300, options=array()
2020-05-19 19:11:20 Connection: opened
2020-05-19 19:11:20 SMTP INBOUND: "220 smtp.gmail.com ESMTP c193sm621927wme.37 - gsmtp"
2020-05-19 19:11:20 SERVER -> CLIENT: 220 smtp.gmail.com ESMTP c193sm621927wme.37 - gsmtp
2020-05-19 19:11:20 CLIENT -> SERVER: EHLO www.der-kerzentunker.de
2020-05-19 19:11:20 SMTP INBOUND: "250-smtp.gmail.com at your service, [134.119.234.102]"
2020-05-19 19:11:20 SMTP INBOUND: "250-SIZE 35882577"
2020-05-19 19:11:20 SMTP INBOUND: "250-8BITMIME"
2020-05-19 19:11:20 SMTP INBOUND: "250-AUTH LOGIN PLAIN XOAUTH2 PLAIN-CLIENTTOKEN OAUTHBEARER XOAUTH"
2020-05-19 19:11:20 SMTP INBOUND: "250-ENHANCEDSTATUSCODES"
2020-05-19 19:11:20 SMTP INBOUND: "250-PIPELINING"
2020-05-19 19:11:20 SMTP INBOUND: "250-CHUNKING"
2020-05-19 19:11:20 SMTP INBOUND: "250 SMTPUTF8"
2020-05-19 19:11:20 SERVER -> CLIENT: 250-smtp.gmail.com at your service, [134.119.234.102]250-SIZE 35882577250-8BITMIME250-AUTH LOGIN PLAIN XOAUTH2 PLAIN-CLIENTTOKEN OAUTHBEARER XOAUTH250-ENHANCEDSTATUSCODES250-PIPELINING250-CHUNKING250 SMTPUTF8
2020-05-19 19:11:20 CLIENT -> SERVER: QUIT
2020-05-19 19:11:20 SMTP INBOUND: "221 2.0.0 closing connection c193sm621927wme.37 - gsmtp"
2020-05-19 19:11:20 SERVER -> CLIENT: 221 2.0.0 closing connection c193sm621927wme.37 - gsmtp
2020-05-19 19:11:20 Connection: closed
Kann uns jemand bei der Fehlerbehebung behilflich sein?
Gruß
Werner
Zuletzt bearbeitet: