summaryrefslogtreecommitdiffstats
path: root/app/email_batching.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_batching.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_batching.go')
-rw-r--r--app/email_batching.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/email_batching.go b/app/email_batching.go
index b37963a94..e2a2286ce 100644
--- a/app/email_batching.go
+++ b/app/email_batching.go
@@ -218,7 +218,7 @@ func sendBatchedEmailNotification(userId string, notifications []*batchedNotific
body.Props["BodyText"] = translateFunc("api.email_batching.send_batched_email_notification.body_text", len(notifications))
if err := utils.SendMail(user.Email, subject, body.Render()); err != nil {
- l4g.Warn(utils.T("api.email_batching.send_batched_email_notification.send.app_error"), user.Email, err)
+ l4g.Warn(utils.T("api.email_batchings.send_batched_email_notification.send.app_error"), user.Email, err)
}
}