i am sending email through my application using the following code of c#
myMail.Body = TextBox1.Text+
txtName.Text+
txtCName.Text+
txtAddress.Text+
TextBox1.Text+
txtCity.Text+
txtState.Text+
txtCountry.Text+
txtPhone.Text+
Fax.Text+
txtCell.Text+
txtEmail.Text+
txtPrinting.Text;
myMail.BodyEncoding = System.Text.Encoding.UTF8;
but i am getting mail in this form “sheerazahmedShehzoreHyderabadsheerazHyderabadSindhPakistan03453594552034598750258741sheery_1@hotmail.comsingle” i.e merging all values, i want each value of textboxt in a separate new line i.e
Sheeraz Ahmed
Shehzore
Hyderabad
etc.
Or better yet, use a stringbuilder or string.Format
or