Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
309 views
in Technique[技术] by (71.8m points)

php - Mailer function error

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You need to set SMTP host and also the port I guess which is 465:

$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Host = "smtp.gmail.com";
$mail->SMTPAuth = true;
$mail->Username = "[email protected]";
$mail->Password = "cc";
$mail->From = "gmail.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();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...