diff options
Diffstat (limited to 'utils/mail.go')
-rw-r--r-- | utils/mail.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/mail.go b/utils/mail.go index 783a2de8c..7cb178626 100644 --- a/utils/mail.go +++ b/utils/mail.go @@ -12,6 +12,7 @@ import ( "net" "net/mail" "net/smtp" + "time" ) func CheckMailSettings() *model.AppError { @@ -101,6 +102,7 @@ func SendMail(to, subject, body string) *model.AppError { headers["Subject"] = html.UnescapeString(subject) headers["MIME-version"] = "1.0" headers["Content-Type"] = "text/html" + headers["Date"] = time.Now().Format(time.RFC1123Z) message := "" for k, v := range headers { |