我无法使用我们使用的smtp服务器发送电子邮件。
编辑:起初我得到错误getaddrinfo失败:名称或服务未知,但已经修复。但我仍然得到以下错误。
Server: send.smtp.com
Port: 25
Use encrypted protocol: No
Authentication: requires username/password
我尝试过的事情:
当我尝试发送测试邮件时,我得到:
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);
如果您需要其他信息/测试,请与我们联系。
答案 0 :(得分:0)
最终结果是smtp.com阻止了我们的IP地址。
(几天前我曾向他们询问过这个问题但他们否认了这一点,但今天他们意识到这一点。)