Android Question Attach device specs when writing email

trueboss323

Active Member
Licensed User
Longtime User
Hello guys, I got a simple question which i can't seem to find in the forums. But whenever a user tries to send an email, how can I also get it to attach a list of the device info and specs? Thanks
 

trueboss323

Active Member
Licensed User
Longtime User
I use this code for sending emails:
B4X:
Dim EmailIntent As Email
EmailIntent.To.Add("[email protected]")
EmailIntent.Body = ""
EmailIntent.Subject = "App Feedback"

Dim intent1 As Intent = EmailIntent.GetIntent
intent1.WrapAsIntentChooser("Send feedback")

StartActivity(intent1)
 
Upvote 0
Top