Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my application, the user have the opportunity to export and import his data file, and i want to add also the option to send this data file by mail as attachment. How can i do this? Thank you for your help.

share|improve this question

1 Answer

up vote 3 down vote accepted

My code to send email with a image attachment:

public void sendViaEmail(String pAttachmentPath, String pSubjectLine) {
    Intent emailIntent = new Intent(Intent.ACTION_SEND);
    emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, pSubjectLine);
    emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, 
            "Screenshot ****************");
    emailIntent.setType("image/jpeg");
    emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile("file://" + pAttachmentPath));
    mActivity.startActivity(emailIntent);
}

Or

public void sendViaEmail(File pAttachmentFile, String pSubjectLine) {
    Intent emailIntent = new Intent(Intent.ACTION_SEND);
    emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, pSubjectLine);
    emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, 
            "Screenshot ****************");
    emailIntent.setType("image/jpeg");
    emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(pAttachmentFile));
    mActivity.startActivity(emailIntent);
}
share|improve this answer
Nice, i'll test it right now with my app. Thanks. – androniennn Aug 22 '11 at 13:57
Please accepte the answer if it works. Thanks – dongshengcn Aug 22 '11 at 13:58
Is there any thing to add in the manifest? i'm getting a ForceClose. – androniennn Aug 22 '11 at 14:23
@androniennn: Use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine LogCat and look at the stack trace associated with your "ForceClose". – CommonsWare Aug 22 '11 at 14:29
2  
@Dongshengcn: the first setType() is unnecessary, since you call setType() again later. It also has the wrong MIME type (it would be text/plain instead of plain/text). Also, I recommend Uri.fromFile() rather than Uri.parse() and concatenation -- it is simpler and more reliable. – CommonsWare Aug 22 '11 at 14:30
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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