refactor: 사이트 타이틀 '업무관리프로그램'으로 통일

- 로그인 화면: 이메일 로그인 탭, 최근 로그인 내역 제거
- 로그인 화면: 비밀번호 로그인만 남김
- 사이트 타이틀 '주간업무보고' → '업무관리프로그램'으로 변경
- 이메일 발송 제목/본문 문구 통일
This commit is contained in:
2026-01-11 22:19:34 +09:00
parent 87f1165b06
commit 52dd530653
5 changed files with 8 additions and 100 deletions

View File

@@ -91,7 +91,7 @@ function buildEmailBody(report: any): string {
<hr><h3>📌 금주 실적</h3><div style="background:#f5f5f5;padding:15px;border-radius:5px">${(report.this_week_work || '').replace(/\n/g, '<br>')}</div>
<h3>📅 차주 계획</h3><div style="background:#f5f5f5;padding:15px;border-radius:5px">${(report.next_week_plan || '').replace(/\n/g, '<br>')}</div>
${report.issues ? `<h3>⚠️ 이슈</h3><div style="background:#fff3cd;padding:15px;border-radius:5px">${report.issues.replace(/\n/g, '<br>')}</div>` : ''}
<hr><p style="color:#666;font-size:12px">주간업무보고 시스템에서 발송</p></body></html>`
<hr><p style="color:#666;font-size:12px">업무관리프로그램에서 발송</p></body></html>`
}
function createRawEmail(opts: { to: string; subject: string; body: string; from: string }): string {