我已经尝试了很长时间,但我无法让 phpmailer 与 smtp 一起工作。我一直在这里测试http://smtper.sweetylife.com/看看我的 smtp 是否正常工作,在这个网站上我可以毫无问题地连接。我的phpmailer设置是:
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "mail.mydomain.com"; // SMTP Server
$mail->SMTPDebug = 2; // Debugmode
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "tls";
$mail->Port = 587; // set the SMTP port for the GMAIL
$mail->Username = "administratie@mydomain.com"; // SMTP account username
$mail->Password = "password"; // SMTP account password
//$mail->SetFrom("administratie@mydomain.com", "First Last");
$mail->AddReplyTo("administratie@mydomain.com","First Last");
$mail->Subject = "PHPMailer Test Subject via smtp, basic with authentication";
//$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->Body = "demo mail";
$address = "re@ceiv.ed";
$mail->AddAddress($address, "John Doe");
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
}
else{
echo "Message sent!";
}
但它不起作用。我收到以下错误:
SMTP -> FROM SERVER: 220 helios.web.xyn-ta.net ESMTP Exim 4.77 Mon, 14 May 2012 11:47:16 +0200
SMTP -> FROM SERVER: 250 helios.web.xyn-ta.net Hello localhost.localdomain [77.243.225.73]
SMTP -> FROM SERVER: 250 OK
SMTP -> FROM SERVER: 550 relay not permitted, authentication required
SMTP -> ERROR: RCPT not accepted from server: 550 relay not permitted, authentication required
SMTP -> FROM SERVER: 503-All RCPT commands were rejected with this error:
503-relay not permitted, authentication required
503 valid RCPT command must precede DATA
SMTP -> ERROR: DATA command not accepted from server: 503-All RCPT commands were rejected with this error:
503-relay not permitted, authentication required
503 valid RCPT command must precede DATA
SMTP -> FROM SERVER: 221 helios.web.xyn-ta.net closing connection
Mailer Error:
我不知道我做错了什么,有没有人有解决这个问题的方法?