Этот коммит содержится в:
Chris
2017-11-23 08:44:19 -06:00
коммит произвёл Joram Wilander
родитель 1ccf093803
Коммит bbb301b7de
6 изменённых файлов: 27 добавлений и 27 удалений

Просмотреть файл

@@ -241,7 +241,7 @@ func (a *App) sendBatchedEmailNotification(userId string, notifications []*batch
body.Props["Posts"] = template.HTML(contents)
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 {
if err := a.SendMail(user.Email, subject, body.Render()); err != nil {
l4g.Warn(utils.T("api.email_batchings.send_batched_email_notification.send.app_error"), user.Email, err)
}
}