Intent msg = new Intent(Intent.ACTION_SEND); String[] recipients = { "" }; // this.is@recipient.com String[] carbonCopies = { "" }; // hey.another@recipient. msg.putExtra(Intent.EXTRA_EMAIL, recipients); msg.putExtra(Intent.EXTRA_CC, carbonCopies); msg .putExtra( Intent.EXTRA_TEXT, "your text"); // Change from ApplicationStep class subject line // Html. msg.putExtra(Intent.EXTRA_SUBJECT, ApplicationStep.EMAIL_SUBJECT); msg.putExtra(Intent.EXTRA_STREAM, Uri.parse(sUri)); // attachment msg.setType("image/png"); startActivity(Intent.createChooser(msg, "Please choose an email client"));
Blog completely focused on android question-answer.