From 62ccb927b28545ebde0e297855b8bae78bcbd358 Mon Sep 17 00:00:00 2001 From: CounterFire2023 <136581895+CounterFire2023@users.noreply.github.com> Date: Wed, 15 May 2024 14:12:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=82=AE=E4=BB=B6=E7=BB=93?= =?UTF-8?q?=E6=9E=9C=E8=BF=94=E5=9B=9E=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/controllers/mail.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/mail.controller.ts b/src/controllers/mail.controller.ts index 1aeca3c..bf30428 100644 --- a/src/controllers/mail.controller.ts +++ b/src/controllers/mail.controller.ts @@ -12,6 +12,6 @@ class MailController extends BaseController { throw new ZError(10, 'params mismatch') } const result = await new MailQueue().addTaskToQueue(message) - return { msgId: result.messageId } + return { msgId: result.messageId, messageId: result.messageId } } }