From 5479ac994d315c07f542ef2dbfb30bae2d5f0a50 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Sat, 3 Jan 2026 21:44:32 -0800 Subject: [PATCH] Update RSVP confirmation email subject --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 8c5f5c0..ac06f7d 100644 --- a/main.go +++ b/main.go @@ -409,7 +409,7 @@ func sendRSVPConfirmation(eventID, email string, numPeople int) { params := &resend.SendEmailRequest{ From: "HCA Events ", To: []string{email}, - Subject: fmt.Sprintf("RSVP Confirmed: %s", event.Name), + Subject: fmt.Sprintf("Thank you for RSVPing to %s", event.Name), Html: html, }