使用 Spring 电子邮件抽象层阅读邮件

发布于 2024-12-10 04:27:01 字数 100 浏览 0 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

蓝咒 2024-12-17 04:27:01

您可以将 Spring 配置为从 POP 或 IMAP 服务器轮询电子邮件

http:// /docs.spring.io/spring-integration/reference/html/mail.html

或者直接访问。

MailReceiver receiver = new Pop3MailReceiver("pop3://usr:pwd@localhost/INBOX");

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.

MailReceiver receiver = new Pop3MailReceiver("pop3://usr:pwd@localhost/INBOX");
魂牵梦绕锁你心扉 2024-12-17 04:27:01

也许是因为 Spring 没有内置的对接收电子邮件的支持?

http://static.springsource.org/ spring/docs/current/spring-framework-reference/html/mail.html

24。电子邮件

24.1 简介

Spring 框架为发送电子邮件提供了一个有用的实用程序库,它使用户免受底层邮件系统细节的影响,并负责代表客户端进行低级资源处理。

如果您想接收电子邮件,则必须使用一些外部库,包括带有 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:

24. Email

24.1 Introduction

The Spring Framework provides a helpful utility library for sending email that shields the user from the specifics of the underlying mailing system and is responsible for low level resource handling on behalf of the client.

If you want to receive e-mails you must use some external libraries, including Spring Integration with POP3 support.

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