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}) } }