mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
* add .TemplateData property to data in order to populate template <title> tags with the compiled subject value * update all templates * re-enable integration test and update implementation to check changes * chore: fmt * add HiddenSubject template func and update text templates * slight performance improvement, only execute subject template once * update template I missed --------- Co-authored-by: Gilles De Mey <gilles.de.mey@gmail.com>
42 lines
1.0 KiB
Go
42 lines
1.0 KiB
Go
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]interface{}, u *user.User) {
|
|
data["AppUrl"] = setting.AppUrl
|
|
data["BuildVersion"] = setting.BuildVersion
|
|
data["BuildStamp"] = setting.BuildStamp
|
|
data["EmailCodeValidHours"] = cfg.EmailCodeValidMinutes / 60
|
|
data["Subject"] = map[string]interface{}{}
|
|
if u != nil {
|
|
data["Name"] = u.NameOrFallback()
|
|
}
|
|
dataCopy := map[string]interface{}{}
|
|
for k, v := range data {
|
|
dataCopy[k] = v
|
|
}
|
|
data["TemplateData"] = dataCopy
|
|
}
|