0
PHPサーバーから画像を取得して文字列(this image)として送信します。この画像を添付ファイルとして電子メールで送信します。文字列をファイルに変換して電子メールの添付ファイルとして送信
電子メールを送信しようとすると、添付ファイルは紙になりますが、受信者側にプレーンテキストのみが表示されます。電子メールを正しく送信するにはどうすればよいですか?
これは私のコードです:
Intent picMessageIntent = new Intent(android.content.Intent.ACTION_SEND);
picMessageIntent.setType("image/jpeg");
String img_source = listBuzzInfoBean.get(photo).getBuzzImage();
File downloadedPic = new File(Environment.getExternalStorageDirectory(), img_source + ".jpg");// Art_Nature
Log.d("++++++++++++++", img_source);
Uri myUri = Uri.fromFile(downloadedPic);
picMessageIntent.putExtra(Intent.EXTRA_STREAM, myUri); //screenshotUri
startActivity(Intent.createChooser(picMessageIntent, "Share image using"));