Android发送mail的源码

把做工程过程中常用的内容段记录起来,如下内容段是关于Android发送mail的的内容,应该对小伙伴们有用。

mime = “img/jpg”;
shareIntent.setDataAndType(Uri.fromFile(fd), mime);
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(fd));
shareIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
shareIntent.putExtra(Intent.EXTRA_TEXT, body);

posted @ 2021-10-05 04:33  wezah05  阅读(39)  评论(0)    收藏  举报