summaryrefslogtreecommitdiff
path: root/notify.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2023-04-17 23:12:04 +0300
committerPaul Buetow <paul@buetow.org>2023-04-17 23:12:04 +0300
commit204c0c88104ce130bdeabfd73c735b7ef33e2f57 (patch)
tree3ff643babafedee47d40fbe6645fe2ab93d32799 /notify.go
parent6b5ed019b50fdec4ab91922708390cb12c9a814e (diff)
only send one report
Diffstat (limited to 'notify.go')
-rw-r--r--notify.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/notify.go b/notify.go
index 3a295ba..7b423cd 100644
--- a/notify.go
+++ b/notify.go
@@ -7,7 +7,7 @@ import (
)
func notify(config config, subject, body string) error {
- log.Println("emailNotify", subject, body)
+ log.Println("notify", subject, body)
headers := make(map[string]string)
headers["From"] = config.EmailFrom