안녕하세요

Intent intent = new Intent(Intent.ACTION_SEND);
   intent.setType("image/jpeg");
   intent.putExtra(Intent.EXTRA_SUBJECT, "Test");
   Uri uri = Uri.parse("file://" + imgPath);
   intent.putExtra(Intent.EXTRA_STREAM, uri);
   startActivity(intent);


위와 같이 파일을 첨부를 해서 startActivity 를 실행 시키면요

구글메일이 나오게 되고, 받는사람, 내용등을 입력한후,

전송을 누르게 되면, 메시지 전송중이란 토스트가 나오게 됩니다.

그런데 실제 메일로 가보면 메일이 와있지 않습니다.

그래서 핸드폰의 gmail로 가보니, 보낼편지함에 계속 쌓여있는데, 이건 왜그런건가요??

좀 도와주세요 ㅠ