From d79fc4a23a58f871b38519bcd0186b76a06c5072 Mon Sep 17 00:00:00 2001 From: keyy1315 Date: Thu, 3 Jul 2025 09:24:47 +0900 Subject: [PATCH] fix: add test email --- src/app/api/qna/service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/api/qna/service.ts b/src/app/api/qna/service.ts index cbba527..f86c16d 100644 --- a/src/app/api/qna/service.ts +++ b/src/app/api/qna/service.ts @@ -112,7 +112,8 @@ export class QnaService { return this.tryFunction(() => { return sendEmail({ from: 'test@test.com', - to: receivers, + // to: receivers, + to: 'keyy1315@interplug.co.kr', subject: `[HANASYS お問い合わせ] ${formData.get('title')}`, content: this.generateEmailContent(formData), attachments: attachments,