This commit is contained in:
eson 2023-09-05 18:35:10 +08:00
parent 996243553a
commit 67bd956b6e
3 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,9 @@
Subject: Please confirm your {{ .CompanyName }} account
MIME-version: 1.0;
Content-Type: text/html;
charset=\"UTF-8\";
Dear {{ .UserName }},
Thank you for registering an account with {{ .CompanyName }}. We are thrilled to have you join our community!

View File

@ -1,5 +1,9 @@
Subject: Password Reset Request for Your {{ .CompanyName }} Account
MIME-version: 1.0;
Content-Type: text/html;
charset=\"UTF-8\";
Dear {{ .UserName }},
We have received your request to reset the password for your {{ .CompanyName }} account.

View File

@ -222,7 +222,7 @@ func RenderEmailTemplate(templateName, companyName, confirmationLink, senderName
}
var result bytes.Buffer
result.Write([]byte("MIME-version: 1.0;\nContent-Type: text/html; charset=\"UTF-8\";\n\n"))
// result.Write([]byte("MIME-version: 1.0;\nContent-Type: text/html; charset=\"UTF-8\";\n\n"))
err := tpls.ExecuteTemplate(&result, templateName, data)
if err != nil {
log.Fatal(err)