Would like user to be able to send the contents of a text box to themselves as either the body of an email or as an attachment. Basically, touch an "Email" button which will bring up activity with keyboard and a text box to put in their email address. I don't need help with that part, just the code for the email functionality. Can someone point me in the right direction to get started?
Dim Message As Intent
Dim Subject As String
Dim Body As String
Uri = "mailto:?subject=" & Subject & "&body=" & Body
Message.Initialize(Message.ACTION_VIEW, Uri)
StartActivity(Message)