Reputation: 97
I want send mail from any email address in android and not specify a gmail email address.
How can this be done? Thanks
Upvotes: 0
Views: 427
Reputation: 40391
You will need to use
public static Intent createChooser (Intent target, CharSequence title
(see http://developer.android.com/reference/android/content/Intent.html).
There's a useful snippet in anddev.org: http://www.anddev.org/email_send_intent_intentchooser-t3295.html
It only works in real devices, AFAIK.
Upvotes: 1