Skip to content

Commit

Permalink
edited message for verification
Browse files Browse the repository at this point in the history
  • Loading branch information
heyyakash committed Aug 31, 2024
1 parent 7e865e5 commit c499652
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/internal/handler/auth.handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ func SendVerificationMail() gin.HandlerFunc {
}
mail := &modals.Email{
To: user.Email,
Subject: "Verification Email",
Content: fmt.Sprintf("Heyy!! Your verification link is below \n%s/user/verify/%s", host, token),
Subject: "Please Verify Your Email Address",
Content: fmt.Sprintf("Dear %s, \nWe hope this message finds you well.\nTo complete your registration process, please verify your email address by clicking the link below:\n\n%s/user/verify/%s", user.FullName, host, token),
}
if err := utils.SendEmail(mail); err != nil {
log.Print(err)
Expand Down

0 comments on commit c499652

Please sign in to comment.