• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Add picture in a eMail

82kolu

Lurker
Hey guys,
is it maybe possible to add an picture to the eMail?
the best would be if it is a new one. Not one which is already on the phone.

@override
public void onClick(View v) {
String emailaddress[] = { emailAdresse };
String message = "Hello, "
+ text....;

Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, emailaddress);
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "picture";
emailIntent.setType("plain/text");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, message);


startActivity(emailIntent);



Thank you guys
regards Lukas
 
Back
Top Bottom