Jump to content

Phpmailer, Smtp -> Error: Ehlo Not Accepted From Server:


TheNavigator

Recommended Posts

SMTP -> ERROR: EHLO not accepted from server:

SMTP -> ERROR: HELO not accepted from server:

SMTP -> ERROR: AUTH not accepted from server:

 

SMTP -> NOTICE: EOF caught while checking if connectedSMTP Connect() failed.

 

Thanfully, this time I've got an experienced person from namecheap to support me. We've tried to do everything we could, still doesn't work :(

 

function smtpmailer($to, $body) {
global $error;
$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->SMTPSecure = 'SSL'; // secure transfer enabled REQUIRED for GMail
$mail->Host = 'smtp.gmail.com';
$mail->Port = 465;
$mail->Username = 'no-reply@unlicrea.com'; 
$mail->Password = '******';		  
$mail->SetFrom('no-reply@unlicrea.com', UnliCrea);
$mail->Subject = 'Welcome to UnliCrea';
$mail->Body = $body;
$mail->AddAddress($to);
if(!$mail->Send()) {
 $error = 'Mail error: '.$mail->ErrorInfo;
 error_log($error);
 return false;
} else {
 $error = 'Message sent!';
 return true;
}
}

 

I hope someone can help. Thanks.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.