簡體   English   中英

無法使用phpmailer發送電子郵件-smtp.com

[英]Cannot send emails with phpmailer - smtp.com

我無法使用我們使用的smtp服務器發送電子郵件。

編輯:起初我收到錯誤getaddrinfo失敗:名稱或服務未知,但已得到修復。 但是我仍然收到下面的錯誤。

Server: send.smtp.com
Port: 25
Use encrypted protocol: No
Authentication: requires username/password 

我嘗試過的事情:

  • 在smtp.com上與支持人員一起驗證了設置
  • 嘗試了不同的端口(80、2525)
  • 暫時在運行apache服務器(RHEL 7)的計算機上禁用防火牆
  • 使用IP地址作為服務器地址

當我嘗試發送測試電子郵件時,我得到:

SMTP -> FROM SERVER: 
SMTP -> FROM SERVER: 
SMTP -> ERROR: EHLO not accepted from server: 
SMTP -> FROM SERVER: 
SMTP -> ERROR: HELO not accepted from server: 
SMTP -> ERROR: AUTH not accepted from server: 

object(SMTP)#35 (7) { 
  ["SMTP_PORT"]=> int(25) 
  ["CRLF"]=> string(2) " " 
  ["do_debug"]=> bool(true) 
  ["do_verp"]=> string(2) "on" 
  ["smtp_conn":"SMTP":private]=> resource(474) of type (stream) 
  ["error":"SMTP":private]=> array(3) { 
    ["error"]=> string(29) "AUTH not accepted from server" 
    ["smtp_code"]=> bool(false) 
    ["smtp_msg"]=> bool(false) 
  } 
  ["helo_rply":"SMTP":private]=> NULL 
} 

SMTP -> NOTICE: EOF caught while checking if connected 
SMTP -> FROM SERVER: 
SMTP -> FROM SERVER: 
SMTP -> ERROR: EHLO not accepted from server: 

SMTP -> FROM SERVER: 
SMTP -> ERROR: HELO not accepted from server: 
SMTP -> ERROR: AUTH not accepted from server: 

object(SMTP)#35 (7) { 
  ["SMTP_PORT"]=> int(25) 
  ["CRLF"]=> string(2) " " 
  ["do_debug"]=> bool(true) 
  ["do_verp"]=> string(2) "on" 
  ["smtp_conn":"SMTP":private]=> resource(476) of type (stream) 
  ["error":"SMTP":private]=> array(3) { 
    ["error"]=> string(29) "AUTH not accepted from server" 
    ["smtp_code"]=> bool(false) 
    ["smtp_msg"]=> bool(false) 
  } 
  ["helo_rply":"SMTP":private]=> NULL 
} 

SMTP -> NOTICE: EOF caught while checking if connected

我能夠遠程登錄:

# telnet send.smtp.com 25
Trying 192.40.165.68
Connected to send.smtp.com
Escape character is '^]'

編輯:在/ var / log / maillog中看到了

May 23 08:20:38 txapone sendmail[68217]: w4MHtNJF053686: to=<me@mydomain.com>, ctladdr=<apache@server.domain.local> (48/48), delay=18:25:15, xdelay=00:00:40, mailer=relay, pri=1740402, relay=send.smtp.com [192.40.165.69], dsn=4.0.0, stat=Deferred: Connection reset by send.smtp.com
May 23 08:20:38 txapone sendmail[68217]: w4MHvv5c053871: to=<me@mydomain.com>, ctladdr=<apache@server.domain.local> (48/48), delay=18:22:40, xdelay=00:00:00, mailer=relay, pri=1740402, relay=send.smtp.com, dsn=4.0.0, stat=Deferred: Connection reset by send.smtp.com
May 23 08:20:38 txapone sendmail[68217]: w4MHakO3053279: to=<me@mydomain.com>, ctladdr=<apache@server.domain.local> (48/48), delay=18:43:52, xdelay=00:00:00, mailer=relay, pri=1830402, relay=send.smtp.com, dsn=4.0.0, stat=Deferred: Connection reset by send.smtp.com
May 23 08:20:38 txapone sendmail[68217]: w4MHcf5U053351: to=<me@mydomain.com>, ctladdr=<apache@server.domain.local> (48/48), delay=18:41:57, xdelay=00:00:00, mailer=relay, pri=1830402, relay=send.smtp.com, dsn=4.0.0, stat=Deferred: Connection reset by send.smtp.com
May 23 08:20:38 txapone sendmail[68217]: w4MHmc4h053590: to=<me@mydomain.com>, ctladdr=<apache@server.domain.local> (48/48), delay=18:32:00, xdelay=00:00:00, mailer=relay, pri=1830402, relay=send.smtp.com, dsn=4.0.0, stat=Deferred: Connection reset by send.smtp.com
May 23 08:22:46 txapone sendmail[68288]: w4NCMkVH068288: from=apache, size=121, class=0, nrcpts=1, msgid=<201805231222.w4NCMkVH068288@txapone.tframes.local>, relay=apache@localhost
May 23 08:22:46 txapone sendmail[68289]: w4NCMk5M068289: from=<apache@server.domain.local>, size=402, class=0, nrcpts=1, msgid=<201805231222.w4NCMkVH068288@txapone.tframes.local>, proto=ESMTP, daemon=MTA, relay=localhost [127.0.0.1]
May 23 08:22:46 txapone sendmail[68288]: w4NCMkVH068288: to=me@mydomain.com, ctladdr=apache (48/48), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=30121, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (w4NCMk5M068289 Message accepted for delivery)
May 23 08:23:27 txapone sendmail[68291]: w4NCMk5M068289: to=<me@mydomain.com>, ctladdr=<apache@server.domain.local> (48/48), delay=00:00:41, xdelay=00:00:41, mailer=relay, pri=120402, relay=send.smtp.com [192.40.165.68], dsn=4.0.0, stat=Deferred: Connection reset by send.smtp.com

這是我正在使用的PHP腳本:

<?php
require("src/PHPMailer.php");
require("src/SMTP.php");
require("src/Exception.php");
$mail = new PHPMailer\PHPMailer\PHPMailer();
$mail->IsSMTP();
$mail->Host = "send.smtp.com"; 
$mail->SMTPAuth = true; 
$mail->Username = "webmaster@domain.com"; 
$mail->Password = "pwd";
$mail->Port = "25";
$mail->From = "notification@domain.com"; 
$mail->FromName = "Company"; 
$mail->AddAddress("allisonc@domain.com", "Me"); 
$mail->AddReplyTo("notification@domain.com", "Company"); 
$mail->WordWrap = 50; 
$mail->IsHTML(false); 
$mail->Subject = "SMTP.com Test";
$mail->Body = "SMTP.com Test Message!";
$mail->Timeout = 30;
$mail->SMTPDebug = 4;
$mail->SMTPSecure = FALSE;
$mail->SMTPAutoTLS = FALSE;
if(!$mail->Send())
{
 echo "Message could not be sent. <p>";
 echo "Mailer Error: " . $mail->ErrorInfo;
 var_dump($mail);
 //exit;
}
else
{
  echo "Message has been sent";
}


echo "<hr>";

$success = mail('allisonc@domain.com', 'Test Mail function', 'Test Mail function');
if (!$success) {
  echo "mail failed";
    $errorMessage = error_get_last()['message'];
    var_dump($errorMessage);
}
var_dump($success);

如果您需要其他信息/測試,請告訴我。

最終結果是smtp.com阻止了我們的IP地址。

(幾天前我曾問過他們這件事,但他們否認了,但今天他們意識到了。)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM