Hi, i am wondering how its possible to recieve incoming emails on an android device.
i can send out emails using private void sendEmail(String[] address, String subject, String msg) {
Intent send = new Intent(Intent.ACTION_SEND);
send.putExtra(Intent.EXTRA_EMAIL, address);
send.putExtra(Intent.EXTRA_SUBJECT, subject);
send.putExtra(Intent.EXTRA_TEXT, msg);
send.setType("text/plain");
startActivity(Intent.createChooser(send, "MySendMail"));
}
But i cant seem find a way to actually receive incoming new emails or even read emails stored in a n inbox? the only inbox i have seen is the ones for SMS but nothing for emails


