properly set time in email notifications
This commit is contained in:
parent
97db2d0b9e
commit
fa871f6467
1 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue