Skip to content

Commit

Permalink
Merge pull request #57 from srm-kzilla/as/chore/spell-check
Browse files Browse the repository at this point in the history
Spell Check
  • Loading branch information
meltedhyperion committed Aug 9, 2023
2 parents 50f1ff6 + fae9ec7 commit be61e7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/users/controller/user-controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func RegisterForEvent(c *fiber.Ctx) error {
}
sesInput := mailer.SESInput{
TemplateName: mailer.TEMPLATES.NewUserTemplate,
Subject: "Registration Successfull",
Subject: "Registration Successful",
Name: user.Name,
RecieverEmail: user.Email,
SenderEmail: os.Getenv("SENDER_EMAIL"),
Expand Down Expand Up @@ -248,7 +248,7 @@ func RsvpForEvent(c *fiber.Ctx) error {
eventsCollection.FindOneAndReplace(context.Background(), bson.M{"slug": reqBody.EventSlug}, event)
sesInput := mailer.SESInput{
TemplateName: mailer.TEMPLATES.RsvpTemplate,
Subject: "RSVP Successfull",
Subject: "RSVP Successful",
Name: user.Name,
RecieverEmail: user.Email,
SenderEmail: os.Getenv("SENDER_EMAIL"),
Expand Down

0 comments on commit be61e7e

Please sign in to comment.