使用 Spring 电子邮件抽象层阅读邮件
Spring 提供了对 JavaMail Api 的抽象。
有很多例子来描述如何使用 Spring 电子邮件抽象层发送邮件。
但我如何使用它阅读电子邮件?
Spring provides abstraction over JavaMail Api.
There are lot of examples to describe how to send mail using spring email abstraction layer.
but how can i read emails using this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将 Spring 配置为从 POP 或 IMAP 服务器轮询电子邮件
http:// /docs.spring.io/spring-integration/reference/html/mail.html
或者直接访问。
You can configure Spring to poll for emails from a POP or IMAP server
http://docs.spring.io/spring-integration/reference/html/mail.html
Or access directly.
也许是因为 Spring 没有内置的对接收电子邮件的支持?
http://static.springsource.org/ spring/docs/current/spring-framework-reference/html/mail.html:
如果您想接收电子邮件,则必须使用一些外部库,包括带有 POP3 支持。
Maybe because Spring does not have a built-in support for receiving e-mails?
http://static.springsource.org/spring/docs/current/spring-framework-reference/html/mail.html:
If you want to receive e-mails you must use some external libraries, including Spring Integration with POP3 support.