summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-12-02 15:54:49 +0900
committerjoonhoekim <26rote@gmail.com>2025-12-02 15:54:49 +0900
commitf4bd8d831a2148f861185680c5bdf4e5b98f96e1 (patch)
treee02ace1d1055b26ee9f2769508b59d808f83f376
parent90b80d861cfd8ba239df395eecf87656e73c1e5f (diff)
(김준회) 판교 요청사항 처리 (기술영업 RFQ 발송시 이메일 가지 않게 주석처리)
-rw-r--r--lib/techsales-rfq/service.ts15
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/techsales-rfq/service.ts b/lib/techsales-rfq/service.ts
index 6f2d7914..cf4d02e2 100644
--- a/lib/techsales-rfq/service.ts
+++ b/lib/techsales-rfq/service.ts
@@ -780,13 +780,14 @@ export async function sendTechSalesRfqToVendors(input: {
// 이메일 전송
- await sendEmail({
- to: vendorEmailsString,
- subject: '견적 요청',
- template: 'tech-sales-rfq-invite-ko', // 기술영업용 템플릿
- context: emailContext,
- cc: sender.email, // 발신자를 CC에 추가
- });
+ // 주석 처리 (판교 요청)
+ // await sendEmail({
+ // to: vendorEmailsString,
+ // subject: '견적 요청',
+ // template: 'tech-sales-rfq-invite-ko', // 기술영업용 템플릿
+ // context: emailContext,
+ // cc: sender.email, // 발신자를 CC에 추가
+ // });
// 4. 선택된 담당자 정보를 quotation_contacts 테이블에 저장
if (input.selectedContacts && input.selectedContacts.length > 0) {