如何第二次连接smtp端口25?

发布于 2024-10-28 13:07:34 字数 252 浏览 1 评论 0原文

我正在使用 Apache commons mail 在我的 Web 应用程序中发送邮件。我的 Web 应用程序托管在 Tomcat 中。当我在服务器启动后第一次尝试发送邮件时。我可以发送邮件。但之后,当我第二次尝试时,它没有连接到 SMTP 端口 25

通过使用 setDebug(true);,我可以发现在 emailObj.send() 之后,它关闭了连接。所以下次就无法连接了。

如何解决我的问题?

I am using Apache commons mail to send mail in my web application. My web application is hosted in Tomcat. When I try to send mail for the first time after server starts. I am able to send mail. But after that, when I attempted second time, it is not connecting to SMTP port 25.

By using setDebug(true);, I could able to find that after emailObj.send(), it closes the connection. So then it couldn't connect next time.

How to resolve my issue?

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

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

发布评论

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

评论(1

幸福%小乖 2024-11-04 13:07:34

您是否重复使用同一个电子邮件实例?

Email 是一个代表一封电子邮件的类,您将通过 send() 方法发送该电子邮件。

如果您想发送另一封电子邮件,则必须实例化一个新的电子邮件对象。

Are you reusing the same Email instance ?

Email is a class representing one Email, which you will sent through send() method.

If you want to send another email, you have to instantiate a new Email object.

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