How helpful.

A lot of websites say to use ACTION_SEND but I found ACTION_SENDTO
works better.

Intent emailIntent = new Intent(android.content.Intent.ACTION_SENDTO);
emailIntent.setData(Uri.parse("mailto:[email protected]";));
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "A
Subject" );


On Feb 28, 8:44 pm, Justin Anderson <[email protected]> wrote:
> http://lmgtfy.com/?q=android+email+intent
>
> On Mon, Feb 28, 2011 at 1:24 PM, brian purgert <[email protected]>wrote:
>
> > I want the person to click on a button and when they click it, it opens up
> > their email and my email address is already there.
>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Android Developers" group.
> > To post to this group, send email to [email protected]
> > To unsubscribe from this group, send email to
> > [email protected]
> > For more options, visit this group at
> >http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to