From af009ea9a592379a563647d5c7f1364c3596ba68 Mon Sep 17 00:00:00 2001 From: myeongju00 Date: Sat, 23 Sep 2023 03:43:08 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20emailjs=20=EC=84=A4=EC=A0=95=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/admin(deprecated)/src/pages/Email/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/admin(deprecated)/src/pages/Email/index.tsx b/apps/admin(deprecated)/src/pages/Email/index.tsx index 1399cd9e..63bcc304 100644 --- a/apps/admin(deprecated)/src/pages/Email/index.tsx +++ b/apps/admin(deprecated)/src/pages/Email/index.tsx @@ -93,11 +93,11 @@ const Email = () => { template: string, applicant: IApplicantTypeWithID, ) => { - emailjs.init('lgOEAaszhLcwuzIQvCuwG'); + emailjs.init('pVvcK6wY1xj9L_Xjv'); const result = await emailjs.send('default_service', template, { - email: applicant.email, - name: applicant.name, - }); + user_email: applicant.email, + user_name: applicant.name, + }, 'pVvcK6wY1xj9L_Xjv'); return result; };