Android Question Send Email

fishwolf

Well-Known Member
Licensed User
Longtime User
In past i sended email with gmail app

Send Email:
Dim Message As Email
Dim MyPhone As Phone
Dim Intent As Intent = Message.GetIntent

    Message.To.Add("help@infoagility.it")
    Message.Subject = "Supporto, segnalazioni e suggerimenti"
    'StartActivity(Message.GetIntent)
    
    Intent.SetPackage("com.google.android.gm")
    StartActivity(Intent)
    
    MyPhone.HideKeyboard(Activity)

Now with last versione doesn't work the To.Add and Subject method, gmail showed only the sender address.

How to fix this?
 

teddybear

Well-Known Member
Licensed User
Which app‘s last version are you referring to, B4A or Gmail?
 
Upvote 0
Top