himanshu
himanshu

Reputation: 97

How to send mail from any e-mail address in android?

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

Answers (1)

Aleadam
Aleadam

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

Related Questions