user1169529
user1169529

Reputation: 31

How to you invoke a particular email client in android?

I want to invoke a specific email client(lotus note traveler email client) directly without opening the email client picker dialog box, any idea?

Upvotes: 0

Views: 209

Answers (1)

RyanInBinary
RyanInBinary

Reputation: 1547

You'll have to check and see if there is an intent available for that specific application, and call that intent, along with your normal "putExtra" (for subject line, body, etc.). Otherwise you'll have to call the default email intent (android.content.Intent.ACTION_SEND) and then set the default to the mail client you want to work with.

Upvotes: 1

Related Questions