properly set time in email notifications

This commit is contained in:
Norwin 2019-02-09 23:18:24 +01:00
parent 97db2d0b9e
commit fa871f6467

View file

@ -87,7 +87,12 @@ func (n EmailNotifier) Submit(notification Notification) error {
)
from := viper.GetString("email.from")
body := fmt.Sprintf("From: openSenseMap Notifier <%s>\nSubject: %s\nContent-Type: text/plain; charset=\"utf-8\"\n\n%s", from, notification.Subject, notification.Body)
body := fmt.Sprintf(
"From: openSenseMap Notifier <%s>\nDate: %s\nSubject: %s\nContent-Type: text/plain; charset=\"utf-8\"\n\n%s",
from,
time.Now().Format(time.RFC1123Z),
notification.Subject,
notification.Body)
// Connect to the server, authenticate, set the sender and recipient,
// and send the email all in one step.