Skip to content

Commit

Permalink
Merge pull request #62 from srm-kzilla/as/chore/rsvp-mail-template
Browse files Browse the repository at this point in the history
update rsvp done email template
  • Loading branch information
meltedhyperion authored Aug 15, 2023
2 parents d0205a5 + d968caa commit 3034b42
Show file tree
Hide file tree
Showing 2 changed files with 771 additions and 560 deletions.
2 changes: 1 addition & 1 deletion api/users/controller/user-controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ func RsvpForEvent(c *fiber.Ctx) error {

c.Set(fiber.HeaderContentType, fiber.MIMETextHTML)

message := fmt.Sprintf("Your seat has been successfully reserved. You may now enter and explore the %s at %s on %s! ", event.Title, strings.Split(event.Timeline[0].Date, " ")[1], event.StartDate)
message := fmt.Sprintf("Your seat has been reserved for %s, join us at %s on %s to find your spark!", event.Title, strings.Split(event.Timeline[0].Date, " ")[1], event.StartDate)
lottieFile := constants.Animations.RsvpSuccess
c.Status(fiber.StatusOK)
return c.Render("rsvpConfirmationTemplate", fiber.Map{
Expand Down
Loading

0 comments on commit 3034b42

Please sign in to comment.