无法连接到 SMTP 主机:{远程服务器},端口:{端口},响应:-1
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
响应代码
-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.