I use Enterprise Library Logging to log errors and to send some notifications. I've configured Email Listener. I need to send some list of warnings at the end of user session.
Log.LogMessage(String.Join(vbCrLf, Errors), Log.Severity.Error, LOG_CATEGORY)
But in email I've no line-breaks separated messages. I've got something like this:
error1 error2 error3
Is it possible to send line-breaking message in Enterprise Library Logging?