I have a problem .. I want only email activities to resolve intent ACTION.SEND but beside email I get other apps as well (e.g TubeMate) even though I have set the mime type
This works for me
Intent intent = new Intent("android.intent.action.SENDTO", Uri.fromParts("mailto", "yourmail@gmail.com", null)); intent.putExtra("android.intent.extra.SUBJECT", "Enter Subject Here"); startActivity(Intent.createChooser(intent, "Select an email client"));