SMTP -> ERROR: DATA not accepted from server: 550 This message was classified as SPAM and may not be delivered
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Host = "mail.cc.com";
$mail->SMTPAuth = true;
$mail->Username = "[email protected]";
$mail->Password = "cc";
$mail->From = "cc.com"." <[email protected]>";
$mail->AddReplyTo("[email protected]");
$mail->FromName = "[email protected]";
$mail->AddAddress($climail);
$mail->AddCC("[email protected]");
$mail->Sender="[email protected]";
$mail->IsHTML(true);
$mail->WordWrap = 70;
$mail->Subject = $sub;
echo $meegate;
$mail->Body=$meegate;
$mail->SMTPDebug = 1;
$mail->Send();
Error occurring while sending mail.. mail not sent..
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…