Android Question Send email

fishwolf

Well-Known Member
Licensed User
Longtime User
In my old app i have use this method for send a email

B4X:
Dim Message As Email
Dim MyPhone As Phone

    Message.To.Add("[email protected]")
    Message.Subject = "Help"
    StartActivity(Message.GetIntent)

now i'm seeing that is show the shared menu with all applications as whatapp, bluetooth, drive and gmail.

is it possible open a new email as i saw before?

i have already see alternative method suggested from Erel

Thanks
 

DonManfred

Expert
Licensed User
Longtime User
what happens if you choose gmail?
 
Upvote 0

MarkusR

Well-Known Member
Licensed User
Longtime User
if there are more than one app registered for handling a mail then a pup-up selection comes where you usually can choose always this "app".
or your "intent" not said what it is and all apps think hey i can handle this file/data.
 
Upvote 0

fishwolf

Well-Known Member
Licensed User
Longtime User
if there are more than one app registered for handling a mail then a pup-up selection comes where you usually can choose always this "app".
or your "intent" not said what it is and all apps think hey i can handle this file/data.

is it possible set gmail as default app?
 
Upvote 0
Top