How to send HTML mail using Android intent

前端 未结 1 1078
慢半拍i
慢半拍i 2021-01-23 03:03
final Intent shareIntent= new Intent(Intent.ACTION_SENDTO, Uri.parse(\"mailto:\"));
shareIntent.putExtra(Intent.EXTRA_SUBJECT, \"The Subject\");
shareIntent.putExtra(
In         


        
相关标签:
1条回答
  • 2021-01-23 03:28

    It looks like a regression in the GMail app. It was working fine before and now it's not working anymore. It might be a bug or it might have been disabled on purpose for security reasons... Anyway I don't think you'll be able to fix this on your side

    0 讨论(0)
提交回复
热议问题