This commit is contained in:
Bastien Durel
2015-08-26 16:45:57 +02:00
parent af02957c22
commit 224e7d1a7b

View File

@@ -102,7 +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.RFC822)
headers["Date"] = time.Now().Format(time.RFC822)
message := ""
for k, v := range headers {