Hi guys

Apologies if this question has been asked before. I have found numerous
threads with the same
question, but have never found a satisfactory answer.

I am trying to send an attachment through email. When composing the email,
everything looks great (attachment
seems to be included and ready to send). However, the attachment does not
get received on the other side.

Below is my code example

Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_TEXT, "Email Text");
email.putExtra(Intent.EXTRA_SUBJECT, "Email Subject");
email.putExtra(Intent.EXTRA_STREAM, Uri.parse("
http://images.google.com/images/logo_sm.gif";));
email.setType("image/gif");
startActivity(email);


Regards
Don

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to