I call the following code:
public static void SendMessage(string sender, string recipient,string subject,string body) { var message = new MailMessage(sender, recipient, subject, body); _smtpClient.Send(message); }
There are line breaks in the body of the message aka Environment.NewLine, but when I open the message in Outlook, they are not there. What am I missing?
source share