[android-developers] Re: How to use buildin email intent

2008-11-18 Thread Matthias
I see, thanks. However, when using Linkify to turn email adresses into mailto: links, I get the same error message. Doesn't that mean that handling email intents simply isn't yet supported? User will probably find it awkward when they cannot send emails when clicking an address, but only through c

[android-developers] Re: How to use buildin email intent

2008-11-18 Thread john
Right. You need to set the correct MIME type, in this case "message/ rfc822". Anybody know when we're going to start seeing support for sending attachments? It's going to make my life a lot easier when we do. On Nov 17, 8:59 am, Peli <[EMAIL PROTECTED]> wrote: > Your intent is missing the corr

[android-developers] Re: How to use buildin email intent

2008-11-17 Thread Peli
Your intent is missing the correct type. Have a look here: http://www.openintents.org/en/node/121 Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, "email text"); sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Subject"); sendIntent.setType("message/rfc822");

[android-developers] Re: How to use buildin email intent

2008-11-17 Thread Matthias
I have the same problem. Any ideas? On 24 Okt., 20:54, "Jake Maui" <[EMAIL PROTECTED]> wrote: > I'm trying to use the builtin email intent and so far I haven't found enough > information to use it correctly. > When I execute the following code, I get the message "No applications can > perform thi