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
Add this line to your code:
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] { "appsupport@YOUR_DOMAIN.com" });
This will fill the "To" section of your screen.