forked from grafana/grafana
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathemail.go
41 lines (37 loc) · 1003 Bytes
/
email.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package notifications
import (
"github.com/grafana/grafana/pkg/services/user"
"github.com/grafana/grafana/pkg/setting"
)
// AttachedFile struct represents email attached files.
type AttachedFile struct {
Name string
Content []byte
}
// Message is representation of the email message.
type Message struct {
To []string
SingleEmail bool
From string
Subject string
Body map[string]string
Info string
ReplyTo []string
EmbeddedFiles []string
AttachedFiles []*AttachedFile
}
func setDefaultTemplateData(cfg *setting.Cfg, data map[string]any, u *user.User) {
data["AppUrl"] = cfg.AppURL
data["BuildVersion"] = setting.BuildVersion
data["BuildStamp"] = setting.BuildStamp
data["EmailCodeValidHours"] = cfg.EmailCodeValidMinutes / 60
data["Subject"] = map[string]any{}
if u != nil {
data["Name"] = u.NameOrFallback()
}
dataCopy := map[string]any{}
for k, v := range data {
dataCopy[k] = v
}
data["TemplateData"] = dataCopy
}