uri
Intent intent = new Intent(Intent.ACTION_SENDTO);
intent.setData(Uri.parse("mailto:"));
intent.putExtra(Intent.EXTRA_EMAIL, addresses);
intent.putExtra(Intent.EXTRA_SUBJECT, subject);
. , , , , , . ,
Intent chooser = Intent.createChooser(intent, "Chooser title");
, ,
if(intent.resolveActivity(getPackageManager()) != null){
startActivity(chooser);
} else {
Toast.makeText(this, "No apps found", Toast.LENGTH_SHORT).show();
}