From a3152bb6e15d46d74c00980d24aac8b108f4b60d Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Thu, 20 Nov 2025 13:34:02 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Service/Common/EmailLogService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Common/EmailLogService.cs b/IRaCIS.Core.Application/Service/Common/EmailLogService.cs index 0aee97137..45c061135 100644 --- a/IRaCIS.Core.Application/Service/Common/EmailLogService.cs +++ b/IRaCIS.Core.Application/Service/Common/EmailLogService.cs @@ -267,7 +267,7 @@ public class EmailLogService(IRepository _emailLogRepository, UniqueId = uid.ToString(), MessageId = message.MessageId ?? string.Empty, EmailSubject = message.Subject ?? string.Empty, - EmailDate = message.Date.UtcDateTime, + EmailDate = message.Date.DateTime, EmailStateEnum = EmailState.Success, }; @@ -287,9 +287,9 @@ public class EmailLogService(IRepository _emailLogRepository, { RecipientName = x.Name ?? string.Empty, RecipientAddress = x.Address, - EmailLogId= emaillog.Id, + EmailLogId = emaillog.Id, RecipientTypeEnum = RecipientType.To, - Sort= sort++, + Sort = sort++, }); }); sort = 0;