PHPMailer SMTP Hatası 550

0 Cevap php

(Benim barındırma hizmeti Softsys olan) paylaşılan bir sunucuda SMTP üzerinden e-posta göndermek için PHPMailer kullanıyorum. E-posta (yani @ domain benim Webdomain) aynı sunucu üzerinde e-posta adreslerine gönderilen ince ediliyor. Ben @ gmail (ya da herhangi bir dış adresi) alıcıyı değiştirmek çalıştığınızda Ancak, aşağıdaki hata günlüğü olsun:

SMTP -> get_lines(): $data was ""
SMTP -> get_lines(): $str is "550 <jDoe@gmail.com> No such user here"
SMTP -> get_lines(): $data is "550 <jDoe@gmail.com> No such user here"
SMTP -> FROM SERVER:550 <jDoe@gmail.com> No such user here
SMTP -> ERROR: RCPT not accepted from server: 550 <jDoe@gmail.com> No such user here
SMTP -> get_lines(): $data was ""
SMTP -> get_lines(): $str is "250 OK"
SMTP -> get_lines(): $data is "250 OK"
SMTP -> FROM SERVER: 250 OK
Message could not be sent.
Mailer Error: SMTP Error: The following recipients failed: jDoe@gmail.com

Bu benim sunucusu ya da benim koduyla ilgili bir sorun var mı? Ben sadece benim sunucu yöneticisi başvurmalısınız? Herhangi bir yardım için şimdiden teşekkür ederiz!

İşte benim kod

require("class.phpmailer.php");
$mail = new PHPMailer();

$mail->IsSMTP();
$mail->Host = "mail.mywebsite.com";
$mail->SMTPAuth = true;
$mail->Username = "myemail";
$mail->Password = "********";
$mail->From = "myemail@mywebsite.com";
$mail->FromName = "John Doe";
$mail->AddAddress("jDoe@gmail.com");    

$mail->IsHTML(true);

$mail->Subject = "Here is the subject";
$mail->Body    = "This is the HTML message body <b>in bold!</b>";
$mail->AltBody = "This is the body in plain text for non-HTML mail clients";

if(!$mail->Send())
{
   echo "Message could not be sent. <p>";
   echo "Mailer Error: " . $mail->ErrorInfo;
   exit;
}

echo "Message has been sent";

0 Cevap