如何第二次连接smtp端口25?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否重复使用同一个电子邮件实例?
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.