Well am building this app, now am at the point where I wanna use the java email API to send email, but am getting a few error such as "The import javax.mail cannot be resolved" I really tried everything here but cant seem to fix it . if anyone could help I would really appreciate it.. am using eclipse by the way..
Thanks
-
You can use Java Mail API: stackoverflow.com/questions/2020088/…Indrek Kõue– Indrek Kõue2011年08月17日 06:19:25 +00:00Commented Aug 17, 2011 at 6:19
1 Answer 1
Android does not include the javax libraries.
To send email on android app you would have to create an intent and let the email app handle it. Here is an example I found via a quick google search http://www.helloandroid.com/tutorials/how-send-email-your-application.