From d08b7944d6ef0f677520b29ae2d9146ec8e14769 Mon Sep 17 00:00:00 2001 From: utkarsh-tf141 Date: Sun, 11 Feb 2024 01:48:35 +0530 Subject: [PATCH] add HR reset pwd mail --- auth/admin.actions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/admin.actions.go b/auth/admin.actions.go index e195a12..24a9c2e 100644 --- a/auth/admin.actions.go +++ b/auth/admin.actions.go @@ -42,7 +42,7 @@ func hrSignUpHandler(mail_channel chan mail.Mail) gin.HandlerFunc { return } - mail_channel <- mail.GenerateMail(request.UserID, "New Credentials generated", "Your new credentials are: \n\nUser ID: "+request.UserID+"\nPassword: "+pass) + mail_channel <- mail.GenerateMail(request.UserID, "New Credentials generated", "Your new credentials are: \n\nUser ID: "+request.UserID+"\nPassword: "+pass+"\n\nYou can reset the password from here") ctx.JSON(http.StatusOK, gin.H{"id": id}) } }