i can pick a image and its path using intent. with the use of that path of an image. i have to set that image as attachment of the mail's body content. how its possible in android???

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,getResources().getString(R.string.emlSendToFriendSubject));
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,new String[]{emailto});
emailIntent.setType("text/plain");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,getResources().getString(R.string.emlSendToFriendBody));
File file = getFileStreamPath(EMAIL_TEMP_FILE);
emailIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
emailIntent.setType("image/jpeg");
emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://"+file.getAbsolutePath()));
startActivityForResult(Intent.createChooser(emailIntent, getResources().getString(R.string.btnSendToFriend)),ActMain.EMAIL_DONE);
link|improve this answer
Whats is ActMain.EMAIL_DONE in your code ??? I am not getting it proper. – iDroid Explorer Nov 14 '11 at 12:29
1  
it is a constant defined by me that I check for in onActivityResult. you can also use startActivity() instead if you don't care if the user canceled the 'pick app' popup (the OS popup listing all compatible apps). – steelbytes Nov 15 '11 at 4:46
Ok Thanks for reply. I got you. – iDroid Explorer Nov 15 '11 at 5:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.