GoDaddy WordPress 邮件 smtp 与 aws Lightsail - 错误无法连接到服务器

问题描述 投票:0回答:3

我使用 AWS Lightsail 托管构建 WordPress 网站。

我在 GoDaddy 购买了域名,并使用该域名创建了自定义电子邮件 (info@myDomain.com) - myDomain 仅用于说明。

我正在尝试配置联系表单并向此电子邮件发送电子邮件。

所以我所做的是安装 WP Mail SMTP 并配置设置。 进入设置我设置的是

然后在 SMTP 主机中添加

我保存了设置并发送电子邮件测试 - 我收到错误

发送测试电子邮件时出现问题。

Versions:
WordPress: 5.8.2
WordPress MS: No
PHP: 7.4.25
WP Mail SMTP: 3.2.1

Params:
Mailer: smtp
Constants: No
ErrorInfo: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
Host: relay-hosting.secureserver.net
Port: 25
SMTPSecure: string(0) ""
SMTPAutoTLS: bool(false)
SMTPAuth: bool(false)

Server:
OpenSSL: OpenSSL 1.1.1d 10 Sep 2019

Debug:
Email Source: WP Mail SMTP
Mailer: Other SMTP
SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting

SMTP Debug:
2022-01-05 09:27:56 Connection: opening to relay-hosting.secureserver.net:25, timeout=300, options=array()

2022-01-05 09:28:27 Connection failed. Error #2: stream_socket_client(): unable to connect to relay-hosting.secureserver.net:25 (Connection timed out) [/opt/bitnami/wordpress/wp-includes/PHPMailer/SMTP.php line 388]

2022-01-05 09:28:27 SMTP ERROR: Failed to connect to server: Connection timed out (110)

SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting

我尝试了更多不同的 smtp 主机:

  1. smtpout.secureserver.net,端口为 465/587
  2. https://email.secureserver.net
  3. myDomain-com.mail.protection.outlook.com

没有任何帮助 - 我遇到了同样的错误。

在 GoDaddy 中,我为我的域名找到了这个

我与 GoDaddy 客户服务人员交谈了 3 个多小时 - 他们不知道如何帮助我。 我读了一些教程,例如:

https://il.godaddy.com/en/help/send-form-mail-using-an-smtp-relay-server-953

我仍在寻找任何答案。 如何使用这些服务 GoDaddy - wordpress - Aws Lightsail 配置正确的 SMTP?

php wordpress amazon-web-services email smtp
3个回答
0
投票

来自 从您的 Lightsail 实例中删除端口 25 限制

默认情况下,AWS 会阻止所有 Lightsail 实例上端口 25 上的出站流量。要在端口 25 上发送出站流量,请请求删除此限制。

您需要请求取消限制。

或者,通过不同的端口连接到 SMTP 服务器(这在使用 TLS 时很常见)。


0
投票

由于 Lightsail 阻止端口 25 上的出站流量。尝试了端口号 2525。


0
投票

在 WP Mail SMTP 的“其他 SMTP”选项中使用以下设置: SMTP 主机:smtpout.secureserver.net 加密:SSL SMTP 端口:465 自动 TLS:开 身份验证:开 SMTP 用户名 : 您的 Goddady SMTP 用户名 SMTP 密码:(此字段的值只需将以下内容复制并粘贴到 WordPress 安装的 wp-config.php 中,然后将“your_password”替换为您的实际密码即可设置。 定义('WPMS_ON', true ); 定义('WPMS_SMTP_PASS','您的密码');

© www.soinside.com 2019 - 2024. All rights reserved.