How do I create an intent to launch any e-mail app?
I have found various topics here and elsewhere on creating an intent for sending e-mail and that seems to be pretty straightforward. I'm looking for an intent to just launch any e-mail client the user might have. Here is the code I've seen for sending an e-mail ( posted just for reference, this doesn't serve my needs as I don't want to send a new message ): Intent i = new Intent(Intent.ACTION_SEND); i.setType("text/plain"); i.putExtra(Intent.EXTRA_EMAIL , new String[]{"recipient@example.com"}); i.putExtra(Intent.EXTRA_SUBJECT, "Subject of the message"); i.putExtra(Intent.EXTRA_TEXT , "Body of