diff --git a/IRaCIS.Core.Application/Service/Common/EmailLogService.cs b/IRaCIS.Core.Application/Service/Common/EmailLogService.cs index cf550c7f3..cb4aa5cf9 100644 --- a/IRaCIS.Core.Application/Service/Common/EmailLogService.cs +++ b/IRaCIS.Core.Application/Service/Common/EmailLogService.cs @@ -68,6 +68,7 @@ public class EmailLogService(IRepository _emailLogRepository, /// /// /// + [HttpPost] public async Task GetEmailInfo(GetEmailInfoInDto inDto) { @@ -212,6 +213,7 @@ public class EmailLogService(IRepository _emailLogRepository, EmailSubject = message.Subject ?? string.Empty, EmailDate = message.Date.UtcDateTime, EmailStateEnum = EmailState.Success, + Attachments = new List() { }, }; var fromMailbox = message.From.Mailboxes.FirstOrDefault();