调用系统发邮件的代码

来源:互联网 发布:asp旅游网站源码 编辑:程序博客网 时间:2024/05/21 17:29
Intent intent = new Intent(Intent.ACTION_SEND);
                String[] tos = { "mobileservice@ablesky.com" };
                intent.putExtra(Intent.EXTRA_EMAIL, tos);
                intent.putExtra(Intent.EXTRA_TEXT, getPhoneParameter());
                intent.putExtra(Intent.EXTRA_SUBJECT, "Android日志");
                intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(cacheDir));
                intent.setType("message/rfc882");
                intent.setType("plain/text");
                Intent.createChooser(intent, "请选择邮件发送软件");
                startActivity(intent);
0 0
原创粉丝点击