feat(alerting): support for attached graphs in alert notifications

closes #6183
This commit is contained in:
bergquist
2016-10-20 15:06:59 +02:00
parent ded5a0a9d5
commit f77799837e
33 changed files with 2358 additions and 418 deletions

View File

@@ -5,11 +5,12 @@ import "errors"
var ErrInvalidEmailCode = errors.New("Invalid or expired email code")
type SendEmailCommand struct {
To []string
Template string
Data map[string]interface{}
Massive bool
Info string
To []string
Template string
Data map[string]interface{}
Massive bool
Info string
EmbededFiles []string
}
type SendEmailCommandSync struct {