Anup Rojekar
Anup Rojekar

Reputation: 1103

How to send an attachment with the Email in android?

Can any body share any code snippet in order to send an attachment with an email using android

native client.

Thanks & Regards,

Upvotes: 0

Views: 1108

Answers (1)

Anup Rojekar
Anup Rojekar

Reputation: 1103

This is what I found,

Intent i = new Intent(Intent.ACTION_SEND);

i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

i.putExtra(Intent.EXTRA_EMAIL, new String[]{""});

i.setType("audio/amr");

i.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + attachmentFilePath));

startActivity(i);

Upvotes: 8

Related Questions