mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Fix misspell issues See, $ golangci-lint run --timeout 10m --disable-all -E misspell ./... Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com> * Fix codespell issues See, $ codespell -S './.git*' -L 'uint,thru,pres,unknwon,serie,referer,uptodate,durationm' Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com> * ci please? * non-empty commit - ci? * Trigger build Co-authored-by: bergquist <carl.bergquist@gmail.com> Co-authored-by: Kyle Brandt <kyle@grafana.com>
37 lines
883 B
Go
37 lines
883 B
Go
package notifications
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"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 string
|
|
Info string
|
|
ReplyTo []string
|
|
EmbededFiles []string
|
|
AttachedFiles []*AttachedFile
|
|
}
|
|
|
|
func setDefaultTemplateData(data map[string]interface{}, u *models.User) {
|
|
data["AppUrl"] = setting.AppUrl
|
|
data["BuildVersion"] = setting.BuildVersion
|
|
data["BuildStamp"] = setting.BuildStamp
|
|
data["EmailCodeValidHours"] = setting.EmailCodeValidMinutes / 60
|
|
data["Subject"] = map[string]interface{}{}
|
|
if u != nil {
|
|
data["Name"] = u.NameOrFallback()
|
|
}
|
|
}
|