From 3170c53534072fc10940f53ecadd9b281320de4e Mon Sep 17 00:00:00 2001 From: nilo Date: Sun, 9 Feb 2025 19:13:16 -0300 Subject: [PATCH] fixed bug on email sent --- controllers/webhookController.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/webhookController.go b/controllers/webhookController.go index d990fbc..b617b7b 100644 --- a/controllers/webhookController.go +++ b/controllers/webhookController.go @@ -245,7 +245,7 @@ func WixTest(c *fiber.Ctx) error { } // Finally, send an email - utils.SendTestEmailApproval(email, name, "tkey", "url") + utils.SendTestEmailApproval(email, name, tkey, cnpj+"-01") }