If create the body property as
System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage(); message.Body =\"First Line \\n second line\";
Sometimes you don't want to create a html e-mail. I solved the problem this way :
Replace \n by \t\n
The tab will not be shown, but the newline will work.