Hallo,
ich nutze den phpmailer von http://phpmailer.sourceforge.net/ auf einem Puretec Server. Eigentlich funktionierte alles immer wunderbar.
Aber: Seit PureTec auf die PHP Version 4.2.3 upgedatet hat, bekomme ich keine Verbindung zum smtp Server mehr.
Ein Updaten des phpmailers von Version 1.71 auf 1.72 hat auch nicht geholfen.
Der phpmailer meldet "Mailer Error: SMTP Error: Could not connect to SMTP host."
Ich bin ratlos...
Hier der Anfang des Scriptes, mit dem es eigentlich funktionieren sollte.
vielen Dank
ich nutze den phpmailer von http://phpmailer.sourceforge.net/ auf einem Puretec Server. Eigentlich funktionierte alles immer wunderbar.
Aber: Seit PureTec auf die PHP Version 4.2.3 upgedatet hat, bekomme ich keine Verbindung zum smtp Server mehr.
Ein Updaten des phpmailers von Version 1.71 auf 1.72 hat auch nicht geholfen.
Der phpmailer meldet "Mailer Error: SMTP Error: Could not connect to SMTP host."
Ich bin ratlos...
Hier der Anfang des Scriptes, mit dem es eigentlich funktionieren sollte.
PHP-Code:
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // send via SMTP
$mail->Host = "smtp.1und1.com"; // SMTP servers
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "my_username"; // SMTP username
$mail->Password = "my_password"; // SMTP password
vielen Dank
Kommentar