From 1919cba466ea82c7b1ca3c7decfaa1149f0d397a Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Tue, 2 Nov 2021 11:11:05 +0800 Subject: [PATCH] fix email with + when active --- modules/templates/helper.go | 1 + templates/mail/auth/activate_email.tmpl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/templates/helper.go b/modules/templates/helper.go index 79195863599e5..61d926ee8af62 100644 --- a/modules/templates/helper.go +++ b/modules/templates/helper.go @@ -498,6 +498,7 @@ func NewTextFuncMap() []texttmpl.FuncMap { } return sum }, + "QueryEscape": url.QueryEscape, }} } diff --git a/templates/mail/auth/activate_email.tmpl b/templates/mail/auth/activate_email.tmpl index 6a8de50112071..a1d7ec37ec5dc 100644 --- a/templates/mail/auth/activate_email.tmpl +++ b/templates/mail/auth/activate_email.tmpl @@ -5,7 +5,7 @@ {{.i18n.Tr "mail.activate_email.title" .DisplayName}} -{{ $activate_url := printf "%suser/activate_email?code=%s&email=%s" AppUrl .Code .Email}} +{{ $activate_url := printf "%suser/activate_email?code=%s&email=%s" AppUrl .Code (QueryEscape .Email)}}

{{.i18n.Tr "mail.hi_user_x" .DisplayName | Str2html}}


{{.i18n.Tr "mail.activate_email.text" .ActiveCodeLives | Str2html}}

{{$activate_url}}