File file = ...
Intent i = new Intent(Intent.ACTION_SEND);
i.putExtra(Intent.EXTRA_TEXT, "Test"); i.putExtra(Intent.EXTRA_SUBJECT, "Debug Data Email send Test..."); i.setType("message/rfc822"); i.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(emailLogFile));
댓글
댓글 쓰기