Email intent not working

android, android-intent

Solution

it might help you..

Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_EMAIL, new String[]{"abc@gmail.com"});        
email.putExtra(Intent.EXTRA_SUBJECT, "Sunject Text Here..");
email.putExtra(Intent.EXTRA_TEXT, "");
email.setType("message/rfc822");
startActivity(Intent.createChooser(email, "Send Mail Using :"));

Problem

I had this in my `onOptionItemSelected` of menu. Whenever I try to run this intent it throws force close error. ``` case R.id.Mail: Intent emailIntent=new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType("plain/text"); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,message); startActivity(emailIntent); break; ```

Original source

Related problems