mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 04:59:15 -06:00
78596a6756
Fixes #30144 Co-authored-by: dsotirakis <sotirakis.dim@gmail.com> Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com> Co-authored-by: Ida Furjesova <ida.furjesova@grafana.com> Co-authored-by: Jack Westbrook <jack.westbrook@gmail.com> Co-authored-by: Will Browne <wbrowne@users.noreply.github.com> Co-authored-by: Leon Sorokin <leeoniya@gmail.com> Co-authored-by: Andrej Ocenas <mr.ocenas@gmail.com> Co-authored-by: spinillos <selenepinillos@gmail.com> Co-authored-by: Karl Persson <kalle.persson@grafana.com> Co-authored-by: Leonard Gram <leo@xlson.com>
37 lines
908 B
Go
37 lines
908 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 map[string]string
|
|
Info string
|
|
ReplyTo []string
|
|
EmbeddedFiles []string
|
|
AttachedFiles []*AttachedFile
|
|
}
|
|
|
|
func setDefaultTemplateData(cfg *setting.Cfg, data map[string]interface{}, u *models.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()
|
|
}
|
|
}
|