通过Intent ACTION_SEND方法发送邮件,弹出的客户端选择解决方案

通过Intent ACTION_SEND方法发送邮件,弹出的客户端选择
Java code
Intent intent = new Intent(android.content.Intent.ACTION_SEND);
intent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{"test@test.com"});
intent.putExtra(android.content.Intent.EXTRA_SUBJECT, "SUBJECT");
intent.putExtra(android.content.Intent.EXTRA_TEXT, "TEXT");
intent.setType("text/html");
startActivity(Intent.createChooser(intent, "Chooser"));


在出现的客户端选择中,只有Gmail和蓝牙,没有默认的Email客户端,这是为什么呢?

------解决方案--------------------
LZ,android默认是Gmail.....
------解决方案--------------------
探讨

ACTION_SEND 这个方式就是用Gmail发送,而且不能指定用别的邮箱发送...
android发送邮件有两种方式,
一种就是你用的方法,用gmail,直接用intent来实现
另一种是用java的方式发送邮件,要设置pop,账户,密码等。。。