4

I would send two or more files using ACTION_SEND on Android as an excerpt below:

Intent(android.content.Intent.ACTION_SEND); emailIntent.setType("plain/text"); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "pokus"); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "t" ); emailIntent.putExtra(android.content.Intent.EXTRA_STREAM,

emailIntent.putExtra(android.content.Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/file1.jpg"));

emailIntent.putExtra(**android.content.Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/file2.jpg"));

startActivity(Intent.createChooser(emailIntent, "Send mail..."));

But that code does not work with GMail, it attaches only the last file. Please help Thanks

Bao Le
  • 16,643
  • 9
  • 65
  • 68

1 Answers1

2

I believe it's impossible using GMail.

If you want to programmaticly send email manually (skipping the GMail client), then you could attach as many items as you want, using android-javamailer:

http://www.jondev.net/articles/Sending_Emails_without_User_Intervention_%28no_Intents%29_in_Android

mdaddy
  • 742
  • 9
  • 10