diff --git a/app/email/email.go b/app/email/email.go
index b9057800fa..d9f3882c61 100644
--- a/app/email/email.go
+++ b/app/email/email.go
@@ -69,6 +69,10 @@ func (es *Service) SendEmailChangeVerifyEmail(newUserEmail, locale, siteURL, tok
map[string]any{"TeamDisplayName": es.config().TeamSettings.SiteName})
data.Props["VerifyUrl"] = link
data.Props["VerifyButton"] = T("api.templates.email_change_verify_body.button")
+ data.Props["QuestionTitle"] = T("api.templates.questions_footer.title")
+ data.Props["EmailInfo1"] = T("api.templates.email_us_anytime_at")
+ data.Props["SupportEmail"] = "feedback@mattermost.com"
+ data.Props["FooterV2"] = T("api.templates.email_footer_v2")
body, err := es.templatesContainer.RenderToString("email_change_verify_body", data)
if err != nil {
diff --git a/i18n/en.json b/i18n/en.json
index 5ebcc304a4..4a13acd640 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -3445,7 +3445,7 @@
},
{
"id": "api.templates.email_change_verify_body.title",
- "translation": "You updated your email"
+ "translation": "You successfully updated your email"
},
{
"id": "api.templates.email_change_verify_subject",
diff --git a/templates/email_change_verify_body.html b/templates/email_change_verify_body.html
index 0babf28737..7febc26063 100644
--- a/templates/email_change_verify_body.html
+++ b/templates/email_change_verify_body.html
@@ -1,46 +1,203 @@
{{define "email_change_verify_body"}}
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+ |
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+ |
+
+
+
+
|
-
- |
-
- |
-
-
- {{template "email_footer" . }}
-
+
- |
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ {{.Props.Title}}
+ |
+
+
+
+ {{.Props.Info}}
+ |
+
+
+ |
+
+ |
+
+
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+ |
+
+
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+ {{.Props.FooterV2}}
+
+ |
+
+
+
+
+ |
+
+
+
+
+ |
+
+
+
+
+
{{end}}
|