I am using the 'MailBuilder' in a C# application where there will possibly be more than 1 line of text in the body of the message. I will receive the data 1 line at a time. Example...
I have 3 pets (listed below):
Dog
Cat
Turtle
If I use the code in a loop like the following where 'lcRead' is 1 line of the data...
string lcMessage = lcRead.Substring(5).Trim(); //Reads each line individually
builder.Text = lcMessage;
The builder.Text will only contain 1 line (which is "Turtle") when the loop completes.
How do I include all lines?