I have seen this code sample for email out a file.
What about direct email out contents from several user entered text response,
hit a button and send to email.
Dim Message As Email
Message.To.Add("[email protected]")
Message.Subject = "title text"
Message.Body = "(testing)"
Message.Attachments.Add(File.Combine(File.DirRootExternal, "all.txt"))
StartActivity(Message.GetIntent) '
What about direct email out contents from several user entered text response,
hit a button and send to email.
Dim Message As Email
Message.To.Add("[email protected]")
Message.Subject = "title text"
Message.Body = "(testing)"
Message.Attachments.Add(File.Combine(File.DirRootExternal, "all.txt"))
StartActivity(Message.GetIntent) '