Send Email to Multiple Addresses Android

后端 未结 3 441
感动是毒
感动是毒 2021-02-06 08:07

I want to select a number of email addresses and then send an email to all of them.

My code is as below:

emailIntent .putExtra(android.content.Intent.EXT         


        
3条回答
  •  一向
    一向 (楼主)
    2021-02-06 08:55

    Add this line to your code:

    emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,
                new String[] { "appsupport@YOUR_DOMAIN.com" });
    

    This will fill the "To" section of your screen.

提交回复
热议问题