feat: improve inquiry notification links
TaxBaik Browser E2E / browser-e2e (push) Successful in 35s
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m22s

This commit is contained in:
2026-06-27 16:02:14 +09:00
parent f54cab5562
commit 5626f976fc
2 changed files with 16 additions and 3 deletions
@@ -27,6 +27,7 @@ public class TelegramInquiryNotificationService : IInquiryNotificationService
return;
var adminLink = $"{_baseUrl}/admin/inquiries/{inquiryId}";
var summary = message.Length > 180 ? message[..180] + "..." : message;
var text = new StringBuilder()
.AppendLine("새 문의가 접수되었습니다.")
.AppendLine()
@@ -34,8 +35,8 @@ public class TelegramInquiryNotificationService : IInquiryNotificationService
.AppendLine($"이름: {name}")
.AppendLine($"연락처: {phone}")
.AppendLine()
.AppendLine("내용:")
.AppendLine(message)
.AppendLine("내용 요약:")
.AppendLine(summary)
.AppendLine()
.AppendLine($"답변 링크: {adminLink}")
.ToString();