Skip to content

Commit 6b8112e

Browse files
Merge pull request #270 from supertokens/email-template
fix: email template for verify email updated
2 parents 6810416 + 2e356bc commit 6b8112e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
## [0.10.8] - 2023-04-18
11+
- Email template for verify email updated
12+
1013
## [0.10.7] - 2023-04-11
1114
- Changed email template to render correctly in outlook
1215

recipe/emailverification/emaildelivery/smtpService/emailVerify.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -853,9 +853,9 @@ const emailVerificationTemplate = `<!doctype html>
853853
</div>
854854
</div>
855855
<div
856-
style="max-width: 394px !important;background-color:#fafafa; border-top: 1px solid #ddd; padding-left: 15%; padding-right: 15%; padding-bottom: 24px; padding-top: 24px">
856+
style="background-color:#fafafa; border-top: 1px solid #ddd; padding-left: 15%; padding-right: 15%; padding-bottom: 24px; padding-top: 24px">
857857
<p
858-
style="font-family: 'Hevetica', sans-serif; font-size: 14px; line-height: 23px; font-weight:400; text-align: center; color: #808080;">
858+
style="max-width: 600px !important; margin: auto; font-family: 'Hevetica', sans-serif; font-size: 14px; line-height: 23px; font-weight:400; text-align: center; color: #808080;">
859859
Alternatively, you can directly paste this link
860860
in your browser <br>
861861
<a style="font-family: 'Helvetica', sans-serif, sans-serif; text-align: center; word-break: break-all; font-weight: 400; font-size: 14px; line-height: 23px; color: #007aff !important;"

supertokens/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const (
2121
)
2222

2323
// VERSION current version of the lib
24-
const VERSION = "0.10.7"
24+
const VERSION = "0.10.8"
2525

2626
var (
2727
cdiSupported = []string{"2.8", "2.9", "2.10", "2.11", "2.12", "2.13", "2.14", "2.15", "2.16", "2.17", "2.18", "2.19", "2.20"}

0 commit comments

Comments
 (0)