I want to select a number of email addresses and then send an email to all of them.
My code is as below:
emailIntent .putExtra(android.content.Intent.EXT
Intent intent = null; intent = new Intent(Intent.ACTION_SEND); intent.setType("plain/text"); intent.putExtra(Intent.EXTRA_EMAIL,new String[] { "abc@gmail.com" , "test@gmail.com", "xyz@test.com"}); startActivity(intent);