无法连接到 SMTP 主机:{远程服务器},端口:{端口},响应:-1

发布于 2024-12-06 03:07:13 字数 201 浏览 2 评论 0原文

我正在尝试使用 java mail api 发送邮件。但上面的情况对我来说是个例外 信息。

无法连接到 SMTP 主机:{remote-server},端口:{port},响应:-1

是什么意思 “响应:-1”

我在 api 手册中找不到此代码。

I am trying to send mail using java mail api. But exception is come to me with above
message.

Could not connect to SMTP host: {remote-server}, port: {port}, response: -1

What`s mean "response : -1"

I can`t found this code in api manual.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的背包 2024-12-13 03:07:13

响应代码 -1 表示 JavaMail 无法从 SMTP 服务器获取有效的响应代码。可以查看相关源码这里

最有可能的是,您的属性设置不正确,或者存在网络问题,例如防火墙阻止连接。

您可以尝试启用调试模式 (session.setDebug(true))。如果您需要进一步的帮助,请发布您的代码。

A response code of -1 means that JavaMail failed to get a valid response code from the SMTP server. You can view the relevant source here.

Most likely, you either have your properties set incorrectly or you have a networking issue such as a firewall blocking the connection.

You might try enabling debug mode (session.setDebug(true)). Please post your code if you need further help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文