iOS Question How to open the inbox from the default email client ?

Jean Weets

Member
Licensed User
Longtime User
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:
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
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…