forked from mattermost/mattermost
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PLT-1015] Make all Mattermost system emails Multi-Part, with both a …
…HTML and Plain Text version. (mattermost#5698) * Implementation to Make all Mattermost system emails Multi-Part, with both a HTML and Plain Text version * update lib * update code per review * update to use the mattermost repo
- Loading branch information
Showing
5 changed files
with
30 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,7 +70,7 @@ func TestSendEmailChangeVerifyEmail(t *testing.T) { | |
|
||
var newUserEmail string = "[email protected]" | ||
var locale string = "en" | ||
var siteURL string = "" | ||
var siteURL string = "http://localhost:8065" | ||
var expectedPartialMessage string = "You updated your email" | ||
var expectedSubject string = "[" + utils.Cfg.TeamSettings.SiteName + "] Verify new email address" | ||
var token string = "TEST_TOKEN" | ||
|
@@ -174,7 +174,7 @@ func TestSendVerifyEmail(t *testing.T) { | |
|
||
var userEmail string = "[email protected]" | ||
var locale string = "en" | ||
var siteURL string = "" | ||
var siteURL string = "http://localhost:8605" | ||
var expectedPartialMessage string = "Please verify your email address by clicking below" | ||
var expectedSubject string = "[" + utils.Cfg.TeamSettings.SiteName + "] Email Verification" | ||
var token string = "TEST_TOKEN" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters