Adding Listview items to email body

Renegade

Member
Licensed User
Longtime User
I have a listview how can i add the items in the listview to the body of an email
It will need multiple lines
 

Renegade

Member
Licensed User
Longtime User
This is the code I have to send email but need to attact data form listview to body of email
Code:
B4X:
Dim eMailMessage As Email
        eMailMessage.To.Add(EmailAdd)
        eMailMessage.Subject = EditText2.Text & " Flight Summary"
        eMailMessage.Body = "This is a text " & Chr(13) & " with a line break."
        StartActivity(eMailMessage.GetIntent) ' Send the eMail
        Msgbox("Email Sent", "Email")
 
Upvote 0
Top