Use the following line.
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType("*/*"); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] {" me@gmail.com "}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Test Subject"); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "go on read the emails"); emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromfile(new File(yourtextfilepath)); startActivity(Intent.createChooser(emailIntent, "Send mail..."));
Make sure that the path to the text file must be from an external memory card. The send action does not accept files from internal memory.
Hope this helps you.
source share