Hello,
I try this code:
Intent i= new Intent(android.content.Intent.ACTION_SEND);
i.putExtra(android.content.Intent.EXTRA_SUBJECT,"this is a test
mail");
i.putExtra(android.content.Intent.EXTRA_STREAM,Uri.parse("file://
sdcard/dcim/Camera/1233417122606.jpg"));
i.putExtra(android.content.Intent.EXTRA_TEXT,"hello mail");
i.setType("jpeg/image");
startActivity(Intent.createChooser(i,"Emailfile"));
}
I can send attachmend via email but attachment doesn't delivered. I
see attachment in G1 client but it isn't send. What I do wrong?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---