Receive recipient account from email sent to Android


I am running an email program in Android from my application using the following code ...

Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.setType("message/rfc822"); sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Test subject"); sendIntent.putExtra(Intent.EXTRA_TEXT, "Hello World!"); startActivityForResult(Intent.createChooser(sendIntent, "Select email application."), INTENT_REQUEST_SEND_EMAIL); 

In the called OnActivityResult (), is it possible to get the number of recipients selected by the user to send email?

Thanks,
Rajath

0
android email-integration
source share
1 answer

This action does not support startActivityForResult() , sorry.

+2
source share

All Articles