在 Android 上开发电子邮件客户端应用程序
我正在尝试开发一个用于在Android平台上发送和接收电子邮件的小应用程序。目前我一直在使用 Javamail api 尝试发送电子邮件。但是我想,如果我使用 javamail 实现我的应用程序,我将如何接收电子邮件并从我的应用程序收到我已收到它的通知?这与 Android 上的 Service 和 Provder 类有关吗?我是 Android 的初学者。
我还尝试了在这里找到的这段代码:
自申请以来没有运气不起作用。
I am trying to develop a small application for sending and receiving emails on the Android plataform. Currently i have been using the Javamail api trying to send an email. However i thought that if i implement my app using javamail how am i going to receive an email and get a notification from my app that i have recieved it? Is this having to do with Service and Provder classes found on Android? I am a complete beginner on android.
Also i tried this piece of code found here :
Android Programming - Send mail
with no luck since application does not work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JavaMail 还可用于从 POP3 服务器获取邮件。作为示例,请查看此类: PopMailImporter .java,特别是importMails和importMail函数。
JavaMail can also be used to fetch mails from a POP3 server. As an example look at this class: PopMailImporter.java, especially the importMails and importMail function.