Android 调用系统Email发送带多附件的邮件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 调用系统Email发送带多附件的邮件相关的知识,希望对你有一定的参考价值。

转自:http://www.open-open.com/lib/view/open1347005126912.html

 

   众所周知,在android中调用其他程序进行相关处理,都是使用的Intent。当然,Email也不例外。

  在Android中,调用Email有三种类型的Intent:

  Intent.ACTION_SENDTO  无附件的发送

  Intent.ACTION_SEND  带附件的发送

  Intent.ACTION_SEND_MULTIPLE  带有多附件的发送

 

 当然,所谓的调用Email,只是说Email可以接收Intent并做这些事情,可能也有其他的应用程序实现了相关功能,所以在执行的时候,会出现选择框进行选择。

 

  1.使用SENTTO发送

  

1
2
3
4
5
Intent data=new Intent(Intent.ACTION_SENDTO); 
data.setData(Uri.parse("mailto:[email protected]")); 
data.putExtra(Intent.EXTRA_SUBJECT, "这是标题"); 
data.putExtra(Intent.EXTRA_TEXT, "这是内容"); 
startActivity(data);

 

   通过向Intent中putExtra来设定邮件的相关参数。

 

  2.使用SEND发送

  

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Intent intent = new Intent(Intent.ACTION_SEND);
String[] tos = { "[email protected]" };
String[] ccs = { "[email protected]" };
String[] bccs = {"[email protected]"};
intent.putExtra(Intent.EXTRA_EMAIL, tos);
intent.putExtra(Intent.EXTRA_CC, ccs);
intent.putExtra(Intent.EXTRA_BCC, bccs);
intent.putExtra(Intent.EXTRA_TEXT, "body");
intent.putExtra(Intent.EXTRA_SUBJECT, "subject");
 
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/Chrysanthemum.jpg"));
intent.setType("image/*");
intent.setType("message/rfc882");
Intent.createChooser(intent, "Choose Email Client");
startActivity(intent);

 

 

  很简单,发送邮件中,有收件者,抄送者,密送者。 也就是分别通过

     Intent.EXTRA_EMAIL,

     Intent.EXTRA_CC,

     Intent.EXTRA_BCC

  来进行putExtra来设定的。

 

  而单个附件的发送,则使用Intent.EXTRA_STREAM来设置附件的地址Uri。

 

   3.使用SEND_MULTIPLE来进行多附件的发送

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Intent intent = new Intent(Intent.ACTION_SEND_MULTIPLE);
String[] tos = { "[email protected]" };
String[] ccs = { "[email protected]" };
intent.putExtra(Intent.EXTRA_EMAIL, tos);
intent.putExtra(Intent.EXTRA_CC, ccs);
intent.putExtra(Intent.EXTRA_TEXT, "body");
intent.putExtra(Intent.EXTRA_SUBJECT, "subject");
 
ArrayList<uri> imageUris = new ArrayList<uri>();
imageUris.add(Uri.parse("file:///sdcard/Chrysanthemum.jpg"));
imageUris.add(Uri.parse("file:///sdcard/Desert.jpg"));     
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imageUris);
intent.setType("image/*");
intent.setType("message/rfc882");
Intent.createChooser(intent, "Choose Email Client");
startActivity(intent);</uri></uri>


    发送多个附件,最主要的时候,通过putParcelableArrayListExtra将多个附件的Uri地址List设置进去就OK了。其实还是很简单的。

 

 

  如下是在三星galaxy tab 2 10.1上面的运行效果:

  技术分享

  

  对于使用邮件发送,在很多的Android应用中都会使用到,跟微博分享一样的常见。大家也只需要稍微了解下就可以了,毕竟还是很容易的。

 

以上是关于Android 调用系统Email发送带多附件的邮件的主要内容,如果未能解决你的问题,请参考以下文章

EXCHANGE 附件问题!

使用python调用email模块实现附件发送

Android开发中怎样调用系统Email发送邮件

c#发送邮件,可发送多个附件

用Python实现带附件发送邮件的功能

用Python实现带附件发送邮件的功能