From 7c6fec61b6624719c399ef69a6e5738dac6b7358 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Fri, 15 Mar 2024 07:03:35 -0400 Subject: [PATCH] fix: remove tpl extension --- mailer/templates.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mailer/templates.go b/mailer/templates.go index c838b6b..d0b401a 100644 --- a/mailer/templates.go +++ b/mailer/templates.go @@ -10,8 +10,8 @@ import ( const EMAIL_FS_PREFIX = "templates/" -const TPL_PASSWORD_RESET = "password_reset.tpl" -const TPL_VERIFY_EMAIL = "verify_email.tpl" +const TPL_PASSWORD_RESET = "password_reset" +const TPL_VERIFY_EMAIL = "verify_email" type EmailTemplate struct { Subject *template.Template