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

@@ -132,7 +132,7 @@ function generateReportEmailBody(report: any): string {
<head><meta charset="UTF-8"></head>
<body style="font-family: 'Malgun Gothic', sans-serif; padding: 20px; max-width: 800px;">
<h2 style="color: #333; border-bottom: 2px solid #007bff; padding-bottom: 10px;">
📋 주간업무보고
📋 업무관리프로그램 - 주간보고
</h2>
<table style="width: 100%; border-collapse: collapse; margin-bottom: 20px;">
@@ -168,7 +168,7 @@ function generateReportEmailBody(report: any): string {
<hr style="margin-top: 30px; border: none; border-top: 1px solid #ddd;">
<p style="color: #6c757d; font-size: 12px;">
이 메일은 주간업무보고 시스템에서 자동 발송되었습니다.
이 메일은 업무관리프로그램에서 자동 발송되었습니다.
</p>
</body>
</html>

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 {