SMTP error with PHPMailer EHLO not supported

16,213

Changing your port to 587 should work:

$mail->Port = 587; // or 587 465

I tried to telnet:

telnet smtp.email.it 25 //not working

telnet smtp.email.it 465 //not working

telnet smtp.email.it 587 //works
Share:
16,213
Xriuk
Author by

Xriuk

Updated on June 04, 2022

Comments

  • Xriuk
    Xriuk almost 2 years

    I have this code, which I want to use to send mails to my customers, PARAMETERS CENSORED (***):

    include 'phpmailer/class.phpmailer.php';
    $mail = new PHPMailer(); // create a new object
    $mail->IsSMTP(); // enable SMTP
    $mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only
    $mail->SMTPAuth = true; // authentication enabled
    $mail->Host = "smtp.email.it";
    $mail->Port = 25; // or 587 465
    $mail->IsHTML(true);
    $mail->SMTPSecure = 'tls';
    $mail->Username = "***";
    $mail->Password = "***";
    $mail->SetFrom('***');
    $mail->Subject = "Test";
    $mail->Body = "hello";
    $mail->AddAddress('***');
     if(!$mail->Send())
        {
        echo "Mailer Error: " . $mail->ErrorInfo;
        }
        else
        {
        echo "Message has been sent";
        }
    

    It connects but gives errors:

    2013-10-13 09:13:25 CLIENT -> SERVER: EHLO *SITE_CENSORED*
    2013-10-13 09:13:25 SMTP ERROR: EHLO command failed: Method EHLO is not supported.
    2013-10-13 09:13:25 SMTP NOTICE: EOF caught while checking if connected
    SMTP connect() failed.
    Mailer Error: SMTP connect() failed.