Android Use System Mail App to Send Mail

来源:互联网 发布:pandora软件 编辑:程序博客网 时间:2024/04/30 21:03

以下代码可以发送邮件,并且附带附件

try {            Intent intent = new Intent(Intent.ACTION_SEND_MULTIPLE);            String[] tos = {"xxx@xxx.xxx"};            intent.putExtra(Intent.EXTRA_EMAIL, tos);            intent.putExtra(Intent.EXTRA_TEXT, "body");            intent.putExtra(Intent.EXTRA_SUBJECT, "subject");            ArrayList<Uri> Uris = new ArrayList<Uri>();            Uris.add(Uri.parse("file:///mnt/sdcard/1234.txt"));            intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, Uris);            intent.setType("image/*");            Intent.createChooser(intent, "Choose Email Client");            startActivity(intent);        }        catch (Exception e)        {            e.printStackTrace();        }
0 0