Problem in Accessing Bcc address from inbox
Hi,
i'm trying to fetch to,cc, & Bcc id from inbox with the below code, i'm able fetch to & cc ID , but with same code for getting bcc id it returns null,
so please help me out in resolving this problem.
Store store = session.getStore("imap");
Folder fldr = store.getFolder("Inbox");
fldr.open(Folder.READ_WRITE);
Message[ ] m = fldr.getMessage();
Address [ ] bcc= m[0].getRecipients(Message.RecipientType.BCC);
Regards
Muthuraj

