The documentation for Intent.ACTION_SENDTO doesn't list any supported extras.
EXTRA_EMAIL, EXTRA_CC, etc are only valid for ACTION_SEND and ACTION_SEND_MULTIPLE even though some apps also support them with ACTION_SENDTO. Receiving apps that only implement what is documented won't read the extras.
The documentation also doesn't mention a type for ACTION_SENDTO intents. While it is unlikely that setting the type to message/rfc822 is causing any problems today it might in the future.
The documentation for
Intent.ACTION_SENDTOdoesn't list any supported extras.EXTRA_EMAIL,EXTRA_CC, etc are only valid forACTION_SENDandACTION_SEND_MULTIPLEeven though some apps also support them withACTION_SENDTO. Receiving apps that only implement what is documented won't read the extras.The documentation also doesn't mention a type for
ACTION_SENDTOintents. While it is unlikely that setting the type tomessage/rfc822is causing any problems today it might in the future.