I need help with the code for newline in email body
Basically I am looking to get the listview item and post it to email body
I need a newline for each entry in the email body
Basically I am looking to get the listview item and post it to email body
I need a newline for each entry in the email body
B4X:
Dim eMailMessage As Email
eMailMessage.To.Add(EmailAdd)
eMailMessage.Subject = EditText1.Text
count = ListView1.Size
For i = 0 To count - 1
Next
eMailMessage.Body = ""
StartActivity(eMailMessage.GetIntent) ' Send the eMail