Huuhaacece
Huuhaacece

Reputation: 651

How to read Google/Yahoo mail inbox using java?

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

Answers (3)

LanguagesNamedAfterCofee
LanguagesNamedAfterCofee

Reputation: 5952

GMail provides an ATOM feed of unread mail that uses HTTP Basic authentication:

http://mail.google.com/mail/feed/atom

Upvotes: 0

Venkat
Venkat

Reputation: 2634

Java itself provides Java Mail APIs to enable mail functionalities. You can also find third party APIs at here.

Upvotes: 1

Related Questions