Intent email = new Intent(Intent.ACTION_SEND); email.setType("message/rfc822");
email.putExtra(Intent.EXTRA_EMAIL,new String[]{"your mail id"});
email.putExtra(Intent.EXTRA_SUBJECT,"Hi this is a test mail buddy"); startActivity(Intent.createChooser(email,"choose an email client"))
nice information @ABAKASH. It is easy to remember if you can share the final variable name of message/rfc822 with us.
@ hablu Actually here the Intent is an implicit intent with action ACTIONSEND, and there may be lots of apps in your Android device which can handle the ACTIONSEND. To avoid a lot of applications in select list for user's choice" we use MIME type "message/rfc822" instead you can use
intent.setType("text/plain");