From cff57a414e03f2792db61f25b93ecf850c0c4b77 Mon Sep 17 00:00:00 2001 From: lorentz Date: Fri, 17 Jul 2026 10:51:12 -0400 Subject: [PATCH] fix: update USER_AWARENESS acknowledgment note copy --- lib/services/triage-note-service.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/services/triage-note-service.ts b/lib/services/triage-note-service.ts index c8f90fd..4e34b20 100644 --- a/lib/services/triage-note-service.ts +++ b/lib/services/triage-note-service.ts @@ -218,9 +218,11 @@ export async function generateAndPostAcknowledgment(campaignId: string): Promise const reports = reportsRes.rows; const noteText = [ - 'Thank you for reporting this email as suspicious!', + 'Thanks for reporting this one!', '', - 'Your quick action in flagging this message is exactly the kind of vigilance that helps keep our organization secure. We really appreciate you taking the time to report it — please keep it up.', + "Heads up — this was a simulated phishing test from our security awareness program, not a real threat. But your instinct to flag it was spot on, and that's exactly what keeps us protected when the real thing shows up.", + '', + 'Nicely done.', ].join('\n'); const client = getAutotaskClient();