Reputation: 651
I want to make a program which can read email (subject, sender, body message) in Yahoo & Google mail.
I originally thought to use POP3 but I read on the internet POP3 can't read the mail box.
Does anyone know of / can suggest a Java library for this problem?
Upvotes: 1
Views: 6442
Reputation: 5952
GMail provides an ATOM feed of unread mail that uses HTTP Basic authentication:
http://mail.google.com/mail/feed/atom
Upvotes: 0
Reputation: 2634
Java itself provides Java Mail APIs to enable mail functionalities. You can also find third party APIs at here.
Upvotes: 1
Reputation: 198304
Peek here:
Getting mail from GMail into Java application using IMAP
Upvotes: 1