In my application I place standard mail messages in web.config .
But if message contains '\n' and mail is sent, it doesn't implement as newline character in mail body.
System.Web.Mail.MailMessage mail = new System.Web.Mail.MailMessage();
mail.To = to;
mail.From = From;
mail.Subject = subject;
mail.BodyFormat = MailFormat.Html;
mail.Body = body;
System.Web.Mail.SmtpMail.SmtpServer = "localhost"; //your real server goes here
System.Web.Mail.SmtpMail.Send( mail );
Any suggestion?