PHPMailer(): Called Mail() without being connected

17,727

this is the format you need to follow if you are using smtp

$mail->IsSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtpout.secureserver.net';  // Specify main and backup server
$mail->Port = '80';
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = '';                            // SMTP username
$mail->Password = '';                           // SMTP password
$mail->SMTPSecure = '';                            // Enable encryption, 'ssl' also accepted


$mail->From = '';
$mail->FromName = '';
$mail->AddAddress('[email protected]', '');  // Add a recipient
$mail->AddReplyTo('', 'reply');
//$mail->AddCC('');
$mail->AddBCC('');

$mail->WordWrap = 50;      
$mail->IsHTML(true);                                  // Set email format to HTML

$mail->Subject = '';
$mail->Body    =  "<!DOCTYPE html>
        <html lang='en-us'>
            <head>
                <meta charset='utf-8'>
                <title></title>

            </head>
            <body>
    <html>";
Share:
17,727
fusi0n
Author by

fusi0n

Updated on June 05, 2022

Comments

  • fusi0n
    fusi0n almost 2 years
    <?php
    //error_reporting(E_ALL);
    error_reporting(E_STRICT);
    require_once('/PHPMailer/class.phpmailer.php');
    
    $mail=new PHPMailer();
    $body='blah body';
    $mail->IsSMTP(); // telling the class to use SMTP
    $mail->Host="127.17.7.4"; // SMTP server
    $mail->Port=25;
    $mail->SMTPDebug=1;                     // enables SMTP debug information (for testing)
                                                   // 1 = errors and messages
                                                   // 2 = messages only
    
    $mail->SetFrom('[email protected]', 'First Last');
    $mail->AddReplyTo("[email protected]","First Last");
    $address = "[email protected]";  //This will be my email address, that I want to receive the mail on
    $mail->AddAddress($address);
    $mail->Subject    = "PHPMailer Test Subject via mail(), basic";
    $mail->MsgHTML($body);
    if(!$mail->Send()) {
        echo "Mailer Error: " . $mail->ErrorInfo;
    } else {
    echo "Message sent!";
    }
    ?>
    

    I am trying to send mail with PHPMailer, but I keep getting the error: The exact error message:

    SMTP -> ERROR: Failed to connect to server: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. (10060)

    The following From address failed: [email protected] : Called Mail() without being connected Mailer Error: The following From address failed: [email protected] : Called Mail() without being connected