How can I open mail client from my app, NOT SENDING EMAIL just open the inbox? when I use
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri data = Uri.parse("mailto:recipient@example.com?subject=" + "" + "&body=" + "");
intent.setData(data);
startActivity(intent);
It opens the send mail view, and I want to open the inbox.