Send Email Intent

前端 未结 30 3624
忘掉有多难
忘掉有多难 2020-11-22 07:27
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType(\"text/html\");
intent.putExtra(Intent.EXTRA_EMAIL, \"emailaddress@emailaddress.com\");
intent.putExtr         


        
30条回答
  •  孤城傲影
    2020-11-22 08:13

    This works for me perfectly fine:

        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setData(Uri.parse("mailto:" + address));
        startActivity(Intent.createChooser(intent, "E-mail"));
    

提交回复
热议问题