No application can perform this action, when send email
This worked for me
Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_EMAIL, new String[]{"[email protected]"});
email.putExtra(Intent.EXTRA_SUBJECT, "subject");
email.putExtra(Intent.EXTRA_TEXT, "message");
email.setType("message/rfc822");
startActivity(Intent.createChooser(email, "Choose an Email client :"));
You need to use text/plain
intent.setType("text/plain");
Also, the Intent.ACTION_SEND
is made for sharing, you may want to use Intent.ACTION_SENDTO
to only get the list of e-mail clients, or avoid sharing applications such as Facebook, Twitter, etc.