summaryrefslogtreecommitdiffstats
path: root/app/email_test.go
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2017-08-21 15:31:13 -0300
committerChristopher Speller <crspeller@gmail.com>2017-08-21 11:31:13 -0700
commit12a9180807f6e1e53023de001eb7f1e611026a91 (patch)
tree0d6028c41d4b874f90ce195787d085d0bb704a15 /app/email_test.go
parent65ccd4afb20b6bec40b8561e0eb0865372371b17 (diff)
downloadchat-12a9180807f6e1e53023de001eb7f1e611026a91.tar.gz
chat-12a9180807f6e1e53023de001eb7f1e611026a91.tar.bz2
chat-12a9180807f6e1e53023de001eb7f1e611026a91.zip
[PLT-1015] Make all Mattermost system emails Multi-Part, with both a HTML and Plain Text version. (#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
Diffstat (limited to 'app/email_test.go')
-rw-r--r--app/email_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/email_test.go b/app/email_test.go
index 67457c702..449e81b75 100644
--- a/app/email_test.go
+++ b/app/email_test.go
@@ -70,7 +70,7 @@ func TestSendEmailChangeVerifyEmail(t *testing.T) {
var newUserEmail string = "newtest@example.com"
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 = "test@example.com"
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"