0

I want to create one application which receive email with attachment.

Cœur
  • 37,241
  • 25
  • 195
  • 267
Sandip Armal Patil
  • 6,241
  • 21
  • 93
  • 160

1 Answers1

1

you can use JavaMail API for this purpose. this link might be helpful for you http://www.roseindia.net/javamail/

but make sure you use the javamail jar file for android because the main jar of javamail is for java and there is an android compatible javamail jar also exist.

Farhana Haque
  • 1,371
  • 14
  • 23
  • Hey thanks....pls tell me some details...how javamail API use? roll of .jar file? – Sandip Armal Patil Feb 13 '12 at 09:13
  • 1
    you need to use jar for it. you should read the tutorial. there you find all details. and you can also see the folloing link here from the first reply you can download the necessary android javamail jar. also there is an example how to send mail. But since you have to attach file you should go through the tutorial. http://stackoverflow.com/questions/2020088/sending-email-in-android-using-javamail-api-without-using-the-default-android-a – Farhana Haque Feb 13 '12 at 10:34