[android-developers] Re: Starting email client with html pre-compiled code

2011-01-04 Thread Sarwar Erfan
I searched in Google and found working examples to send HTML email from Android, which I used. Though I did not use images and did not include the html and body tags. I used formatting tags like strong etc. I don't exactly remember the code right now. I think you should first search in

[android-developers] Re: Starting email client with html pre-compiled code

2011-01-04 Thread pedr0
I founded a lot of code which SEND email with HTML code inside the body, what I am looking for is open the email client with some HTML interpreted code. I didn't find this on Google! Bye pedr0 On 4 Gen, 10:47, Sarwar Erfan erfanonl...@gmail.com wrote: I searched in Google and found working

[android-developers] Re: Starting email client with html pre-compiled code

2011-01-04 Thread Sohil
Try this, final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType(text/html); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml(emailText)); QuoteDroid.this.startActivity(emailIntent); Hope it works for you. -- You received this

Re: [android-developers] Re: Starting email client with html pre-compiled code

2011-01-04 Thread Kumar Bibek
Simple html is fine, but you won't be able to embed images this way. Inline images, I mean On 04-Jan-2011 6:08 PM, Sohil sohilva...@hotmail.com wrote: Try this, final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType(text/html);

[android-developers] Re: Starting email client with html pre-compiled code

2011-01-04 Thread pedr0
Not, the result is the same...I can see the HTML tag but I would like users see the interpretation of that. Any suggestion? Thanks any way On 4 Gen, 13:45, Kumar Bibek coomar@gmail.com wrote: Simple html is fine, but you won't be able to  embed images this way. Inline images, I mean On

[android-developers] Re: Starting email client with html pre-compiled code

2011-01-04 Thread Brill Pappin
Can you use the mailto tag in the link? a href=mailto:ad...@examplecom?subject=yourmail;Label/a - Brill Pappin -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To