본문 바로가기
프로그래밍 놀이터/안드로이드, Java

[android] intent 통해서 email 보내기.

by 돼지왕 왕돼지 2012. 11. 6.
반응형



intent 를 통해서 email 보내기.

Intent intent = new Intent(Intent.ACTION_SEND);

intent.setType("message/rfc822");

intent.putExtra(Intent.EXTRA_EMAIL  , new String[]{"recipient@email.com"});

intent.putExtra(Intent.EXTRA_SUBJECT, "subject of email");

intent.putExtra(Intent.EXTRA_TEXT   , "body of email");

startActivity(Intent.createChooser(intent, "Send mail..."));



도움이 되셨다면 손가락 꾸욱~ ( 로그인 필요 x )



반응형

댓글