Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 나 122 이슈인데 해결 해야한다. 빨리 approve 원한다. #128

Merged
merged 2 commits into from
Mar 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions frontend/app/application/backup/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,14 @@ const sendSms = async ({ name, phone }: { name: string; phone: string }) => {
contentType: "COMM",
countryCode: "82",
from: "01030665016",
content: "",
content:
"안녕하세요," +
name +
"님\n" +
'2024년 1학기 에코노베이션 27기 신입회원 모집에 지원해주셔서 감사드립니다.\n한 번 제출하신 지원서는 수정이 불가능하며, 서류 합격 여부 및 면접 시간은 3월 18일 월요일에 안내될 예정입니다.\n더 궁금하신 내용은 카카오톡 채널 "에코노베이션"으로 문의 주시길 바랍니다.\n감사합니다.',
messages: [
{
to: phone,
content:
"안녕하세요," +
name +
"님\n" +
'2024년 1학기 에코노베이션 27기 신입회원 모집에 지원해주셔서 감사드립니다.\n한 번 제출하신 지원서는 수정이 불가능하며, 서류 합격 여부 및 면접 시간은 3월 18일 월요일에 안내될 예정입니다.\n더 궁금하신 내용은 카카오톡 채널 "에코노베이션"으로 문의 주시길 바랍니다.\n감사합니다.',
},
],
};
Expand Down