用java实现电子邮件服务器
使用 java 实现电子邮件服务系统必须使用哪些语言组件?
What all language components will have to be used for implementing an email service system using java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想实现电子邮件服务器(SMTP、IMAP、POP3) - 已经有了 Apache JAMES。它是开源的,因此如果您坚持制作一个,可以查看其来源。
如果您只想发送电子邮件,并且已安装 SMTP 服务器,请使用 Simple Java Mail 或 commons-email。两者都位于 Jakarta Mail(以前的 JavaMail)之上,并且对开发人员非常友好。
If you want to implement an email server (SMTP, IMAP, POP3) - there is already Apache JAMES. It's open-source, so you can look into its sources if you insist on making one.
If you want to just send emails, having an already installed SMTP server, then use Simple Java Mail or commons-email. Both sit on top of Jakarta Mail (previously JavaMail) and are very developer-friendly.
对于 SMTP subethasmtp 来说很不错
for SMTP subethasmtp rocks
也许看看 Apache JAMES。
Maybe look at Apache JAMES.