I am writing an application for the Android. How do I send email from it?
|
|
The best (and easiest) way is to use an
Otherwise you'll have to write your own client. |
|||||||||||||||||
|
|
Use |
|||||||||||||||||
|
|
I've been using this since long time ago and it seems good, no non-email apps showing up. Just another way to send a send email intent:
|
|||||||||||
|
|
Sending email can be done with Intents which will require no configuration. But then it will require user interaction and the layout will be a bit restricted. Build and sending a more complex email without user interaction entails building your own client. The first thing is that the Sun Java API for email are unavailable. I have had success leveraging the Apache Mime4j library to build email. All based on the docs at nilvec. |
|||
|
|
|
I was using something along the lines of the currently accepted answer in order to send emails with an attached binary error log file. GMail and K-9 send it just fine and it also arrives fine on my mail server. The only problem was my mail client of choice Thunderbird which had troubles with opening / saving the attached log file. In fact it simply didn't save the file at all without complaining. I took a look at one of these mail's source codes and noticed that the log file attachment had (understandably) the mime type After a bit of research and experimenting I came up with the following solution:
It can be used as follows:
As you can see, the createEmailOnlyChooserIntent method can be easily fed with the correct intent and the correct mime type. It then goes through the list of available activities that respond to an ACTION_SENDTO Another advantage is that Skype is not listed anymore (which happens to respond to the rfc822 mime type). |
|||
|
|
simple try this one
|
|||
|
|
protected by Community♦ Jun 19 '11 at 0:11
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
