Files
Matthew Jacobson a93664ff3d Alerting: Add EmbeddedContents as alternative embedding in smtp (#99937)
Adds support for embedding []byte in SmtpClient instead of filenames. This is backwards compatible as it uses a new field EmbeddedContents to add an alternative to the existing EmbeddedFiles which takes filenames.
2025-02-05 11:12:30 -05:00

49 lines
1.2 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
}
// EmbeddedContent struct represents an embedded file.
type EmbeddedContent 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
EmbeddedContents []EmbeddedContent
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
}