From 674b3cc59156b18888245d0d35f5ebcd856d2b85 Mon Sep 17 00:00:00 2001 From: Lei OT Date: Thu, 19 Jun 2025 16:15:54 +0800 Subject: [PATCH] =?UTF-8?q?=E9=82=AE=E4=BB=B6=E6=9F=A5=E6=89=BE=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/actions/EmailActions.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/actions/EmailActions.js b/src/actions/EmailActions.js index df31896..1a61f75 100644 --- a/src/actions/EmailActions.js +++ b/src/actions/EmailActions.js @@ -475,3 +475,8 @@ export const queryOPIOrderAction = async (params) => { const { errcode, result } = await fetchJSON(`${API_HOST}/getdvancedwlorder`, params) return errcode !== 0 ? [] : result }; + +export const queryInMailboxAction = async (params) => { + const { errcode, result } = await fetchJSON(`${API_HOST_V3}/mail_search`, params) + return errcode !== 0 ? [] : result +}