Hello,
How do I open in B4I the default email client with his inbox (not to sent an email) ?
For Android B4A this work fine:
How do I open in B4I the default email client with his inbox (not to sent an email) ?
For Android B4A this work fine:
B4X:
Dim In As Intent
In.Initialize(In.ACTION_SEND, "")
In.SetType("text/plain")
In.SetComponent("com.android.email/.activity.Welcome")
In.Flags = 0x10000000
Try
StartActivity(In)
Catch
Log("Check Email: Start Failed... ")
End Try