diff --git a/server/StrDss.Service/EmailMessageService.cs b/server/StrDss.Service/EmailMessageService.cs index 58e83194..ec7f9888 100644 --- a/server/StrDss.Service/EmailMessageService.cs +++ b/server/StrDss.Service/EmailMessageService.cs @@ -62,6 +62,9 @@ public async Task SendEmailAsync(EmailContent emailContent) } var jsonContent = emailContent.ToString(); + + _logger.LogDebug($"CHES: {jsonContent}"); + var httpContent = new StringContent(jsonContent, Encoding.UTF8, "application/json"); var response = await _httpClient.PostAsync($"{chesUrl}/api/v1/email", httpContent);