Is there a way to programically open email client, without a need to forcing message send? I just want the app to let user open his email client for email checking purposes
Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_APP_EMAIL); startActivity(intent); startActivity(Intent.createChooser(intent, getString(R.string.ChoseEmailClient)));
That kinda worked. But it opend Gmail for me, even since I have other email clients