Copy link to clipboard
Copied
How would I add an image to an email?
Copy link to clipboard
Copied
I don't think there is any specific API available for the purpose. You can try providing image content in mail body while launching it via navigateToURL() api in AIR.
Copy link to clipboard
Copied
Is it possible to access the Intent API through AIR?
Update: Just read this response where the Intent API is not supported http://forums.adobe.com/message/3387060#3387060.
Android Code:
Intent picMessageIntent = new Intent(android.content.Intent.ACTION_SEND);
picMessageIntent.setType("image/jpeg");
File downloadedPic = new File(
Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_DOWNLOADS),
"q.jpeg");
picMessageIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(downloadedPic));
startActivity(Intent.createChooser(picMessageIntent, "Send your picture using:"));
Taken from:
http://mobile.tutsplus.com/tutorials/android/android-sdk-sending-pictures-the-easy-way/