protected override string FormatForNotificationSystem(UserNotification notification)
        {
            var title = StringHelpers.Border(50) + notification.Title + StringHelpers.Border(50);
            var lines = new string[] { title, notification.Message, notification.Conclusion };

            return(String.Join('\n', lines));
        }