I have this code:
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent Mail = new Intent(Intent.ACTION_SEND);
Mail.setData(Uri.parse("mailto:"));
Mail.putExtra(Intent.EXTRA_EMAIL,"[email protected]");
Mail.putExtra(Intent.EXTRA_CC,"[email protected]");
Mail.putExtra(Intent.EXTRA_SUBJECT,"tema");
Mail.putExtra(Intent.EXTRA_TEXT,"cuerpo correo");
Mail.setType("message/rfc822");
startActivity(Intent.createChooser(Mail,"send Email"));
}
});
what happens is that when it is executed in the gmail application it shows the subject and the body, but it does not show for whom it is addressed or the copy
Could it be a version problem or something like that?