package notifier import ( "context" "github.com/grafana/alerting/receivers" "github.com/grafana/grafana/pkg/services/notifications" ) type emailSender struct { ns notifications.Service } func (s emailSender) SendEmail(ctx context.Context, cmd *receivers.SendEmailSettings) error { sendEmailCommand := notifications.SendEmailCommand{ To: cmd.To, SingleEmail: cmd.SingleEmail, Template: cmd.Template, Subject: cmd.Subject, Data: cmd.Data, ReplyTo: cmd.ReplyTo, EmbeddedFiles: cmd.EmbeddedFiles, } if len(cmd.EmbeddedContents) > 0 { sendEmailCommand.EmbeddedContents = make([]notifications.EmbeddedContent, len(cmd.EmbeddedContents)) for i, ec := range cmd.EmbeddedContents { sendEmailCommand.EmbeddedContents[i] = notifications.EmbeddedContent{ Name: ec.Name, Content: ec.Content, } } } return s.ns.SendEmailCommandHandlerSync(ctx, ¬ifications.SendEmailCommandSync{ SendEmailCommand: sendEmailCommand, }) }