Hi, I would like to send email via
startActivity(Intent.createChooser(new Intent(android.content.Intent.ACTION_SEND)))
I know that to attach file to email I need
intentEmail.putExtra(android.content.Intent.EXTRA_STREAM, <Uri of file>)
but I need to attach several files. How can I do this?