Intent.EXTRA_CC没有在Android应用程序中填充cc字段

时间:2017-07-06 19:20:12

标签: android email android-intent

我预先填写了一封应该在用户默认电子邮件应用中启动的电子邮件,但出于某种原因,CC行不会填充它的预期字符串。任何想法会发生什么?

Intent toSupportIntent = new Intent(Intent.ACTION_SENDTO, Uri.parse("mailto:" +  getString(R.string.support_email)));
toSupportIntent.putExtra(Intent.EXTRA_CC, getString(R.string.cc_support_email));
toSupportIntent.putExtra(Intent.EXTRA_SUBJECT, getString(R.string.support_email_subject));
toSupportIntent.putExtra(Intent.EXTRA_TEXT, getString(R.string.support_email_message));
startActivity(toSupportIntent);

1 个答案:

答案 0 :(得分:1)

ACTION_SENDTO is not documented to support EXTRA_CC。因此,如果它不适用于所有应用程序,您不应该感到惊讶。