From a80e45e4a16471bcf0c3c0bb4befdaf414c94a9b Mon Sep 17 00:00:00 2001 From: Denis Arh Date: Mon, 13 May 2019 19:53:22 +0200 Subject: [PATCH] Fix copy in auth notification emails --- system/internal/service/auth_notification.go | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/system/internal/service/auth_notification.go b/system/internal/service/auth_notification.go index 8cdff9c41..0425fa33e 100644 --- a/system/internal/service/auth_notification.go +++ b/system/internal/service/auth_notification.go @@ -91,20 +91,16 @@ var ( "email-confirmation.en.html": emailTemplateHeader + `

Confirm your email address

Hello,

-

Here's a copy of your account details:

-
- Username: {{ .EmailAddress }} -
- Email confirmation link: - {{ .URL }} -
` + +

Follow this link to confirm your email address.

+

You will be logged-in after successful confirmation.

` + emailTemplateFooter, "password-reset.en.subject": `[Crust] Reset your password`, "password-reset.en.html": emailTemplateHeader + `

Reset your password

Hello,

-

Follow this link and reset your password.

` + +

Follow this link and reset your password.

+

You will be logged-in after successful reset.

` + emailTemplateFooter, } )