I have requirement to read user email box with user permissions and display contents in single inbox.
Program will ask user input userid/password and we also pass param to identify gmail or yahoo etc.
package com.java.test;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Properties;
import javax.mail.Flags;
import javax.mail.Folder;
import...