这是我的代码(下面给出)的一部分,我用来从我的Android应用程序发送图像作为电子邮件中的附件,它工作正常但接收的图像类型为File
而不是{{1 }}。因此,请告诉我如何设置电子邮件中附加的图像类型。
代码:
JPG
答案 0 :(得分:0)
我有使用附件发送邮件的工作代码,
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.setType("text/html");
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "File attached");
Uri uri = Uri.fromFile(new File(Environment.getExternalStorageDirectory(), "image.png"));
emailIntent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(emailIntent, "Send mail..."));
如果您需要任何其他帮助,请与我们联系。