-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReadMail.java
80 lines (62 loc) · 2.17 KB
/
ReadMail.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import javax.mail.Address;
import javax.mail.FetchProfile;
import javax.mail.Flags;
import javax.mail.Flags.Flag;
import javax.mail.Folder;
import javax.mail.Message;
import javax.mail.Session;
import javax.mail.Store;
import javax.mail.search.FlagTerm;
public class ReadMail {
static Folder inbox;
public static void main(String[] args) throws Exception {
String email = "Your Email...";
String password = "Your Password..."
System.out.println(unReadEmailData(email , password));
}
public static Object unReadEmailData(String email , String password) throws Exception {
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
Properties props = System.getProperties();
props.setProperty("mail.store.protocol", "imaps");
Session session = Session.getDefaultInstance(props, null);
Store store = session.getStore("imaps");
store.connect("imap.gmail.com", "email", "password");
inbox = store.getFolder("INBOX");
inbox.open(Folder.READ_ONLY);
Message messages[] = inbox.search(new FlagTerm(new Flags(Flag.SEEN), false));
FetchProfile fp = new FetchProfile();
fp.add(FetchProfile.Item.ENVELOPE);
fp.add(FetchProfile.Item.FLAGS);
inbox.fetch(messages, fp);
for (int i = 0; i < messages.length; i++) {
Map<String, Object> map = new HashMap<>();
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ");
Address[] a;
// FROM
if ((a = messages[i].getFrom()) != null) {
for (int j = 0; j < a.length; j++) {
map.put("from", "\"" + a[j] + "\"");
}
}
// TO
if ((a = messages[i].getRecipients(Message.RecipientType.TO)) != null) {
for (int j = 0; j < a.length; j++) {
map.put("to", "\"" + a[j] + "\"");
}
}
map.put("receiveDate", format.format(messages[i].getReceivedDate()));
map.put("subject", messages[i].getSubject());
map.put("sentDate", format.format(messages[i].getSentDate()));
map.put("messageNumber", messages[i].getMessageNumber());
map.put("readStatus", true);
list.add(map);
}
return list;
}
}