This is the code for the intent:
Intent emailIntent = new Intent();
emailIntent.setAction(Intent.ACTION_SEND);
emailIntent.putExtra(Intent.EXTRA_TEXT, text);
emailIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
emailIntent.setType("message/rfc822");
Intent openInChooser = Intent.createChooser(emailIntent,resources.getString(R.string.app_name));
startActivity(openInChooser);
In Samsung phones the chooser only shows the native email apps but not the ones that have been installed from the play store. Is there something else I need to add?