How to add an image in email body

后端 未结 3 454
甜味超标
甜味超标 2020-11-27 04:13

I want to add an image in email body. I don\'t want to attach an image to the email, but add an image in the email body.

How to do this?

I\'m using this.

3条回答
  •  春和景丽
    2020-11-27 04:42

    Here is a related question.

    It seems that you can use:

    intent.putExtra(Intent.EXTRA_STREAM, uri);
    

    where uri is a file path URI.

提交回复
热议问题