Update RSVP confirmation email subject

This commit is contained in:
Ian Gulliver
2026-01-03 21:44:32 -08:00
parent 740ae71ab3
commit 5479ac994d

View File

@@ -409,7 +409,7 @@ func sendRSVPConfirmation(eventID, email string, numPeople int) {
params := &resend.SendEmailRequest{
From: "HCA Events <events@hca.run>",
To: []string{email},
Subject: fmt.Sprintf("RSVP Confirmed: %s", event.Name),
Subject: fmt.Sprintf("Thank you for RSVPing to %s", event.Name),
Html: html,
}