How to show mail apps through intent. I want to take user to only login screen not to compose email screen
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(resetEmail));
startActivity(intent);
The above code am using for open mail app through intent, but its not working.