email

  1. Home
  2. chevron_right
  3. email

Add image to email intent in Android

Snippets, Solutions
How to add image to an email intent in Android: // build a email sending intent Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType("image/png"); // set the email subject emailIntent.putExtra(Intent.EXTRA_SUBJECT, "email subject");…