Android: Action_send_multiple With Com.android.email
I'm trying to send multiple attachments in an Intent to the Email app (not the Gmail app). I'm using: Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND_MULTIPLE);
Solution 1:
Solution 2:
I realize that this is quite late, but your intent type is backwards. It should be
emailIntent.setType("text/plain");
not
emailIntent.setType("plain/text");
I'm surprised neither of the other answers pointed that out...
Solution 3:
Instead of
emailIntent.setType("plain/text");
use
emailIntent.setType("application/octet-stream");
I don't know why, but it's working for me.
Post a Comment for "Android: Action_send_multiple With Com.android.email"