2015-06-05 01:15:38 -05:00
|
|
|
package models
|
|
|
|
|
2015-06-08 06:39:02 -05:00
|
|
|
import "errors"
|
|
|
|
|
2020-11-05 06:07:06 -06:00
|
|
|
var ErrInvalidEmailCode = errors.New("invalid or expired email code")
|
2019-04-23 03:24:47 -05:00
|
|
|
var ErrSmtpNotEnabled = errors.New("SMTP not configured, check your grafana.ini config file's [smtp] section")
|
2015-06-08 06:39:02 -05:00
|
|
|
|
2019-08-26 09:44:18 -05:00
|
|
|
// SendEmailAttachFile is a definition of the attached files without path
|
|
|
|
type SendEmailAttachFile struct {
|
|
|
|
Name string
|
|
|
|
Content []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// SendEmailCommand is command for sending emails
|
2015-06-05 01:15:38 -05:00
|
|
|
type SendEmailCommand struct {
|
2019-08-26 09:44:18 -05:00
|
|
|
To []string
|
2020-01-10 09:06:33 -06:00
|
|
|
SingleEmail bool
|
2019-08-26 09:44:18 -05:00
|
|
|
Template string
|
|
|
|
Subject string
|
|
|
|
Data map[string]interface{}
|
|
|
|
Info string
|
|
|
|
ReplyTo []string
|
2020-06-01 10:11:25 -05:00
|
|
|
EmbeddedFiles []string
|
2019-08-26 09:44:18 -05:00
|
|
|
AttachedFiles []*SendEmailAttachFile
|
2015-06-05 01:15:38 -05:00
|
|
|
}
|
|
|
|
|
2019-08-26 09:44:18 -05:00
|
|
|
// SendEmailCommandSync is command for sending emails in sync
|
2016-10-03 02:38:03 -05:00
|
|
|
type SendEmailCommandSync struct {
|
|
|
|
SendEmailCommand
|
|
|
|
}
|
|
|
|
|
|
|
|
type SendWebhookSync struct {
|
2017-03-23 15:53:54 -05:00
|
|
|
Url string
|
|
|
|
User string
|
|
|
|
Password string
|
|
|
|
Body string
|
|
|
|
HttpMethod string
|
|
|
|
HttpHeader map[string]string
|
|
|
|
ContentType string
|
2016-10-03 02:38:03 -05:00
|
|
|
}
|
|
|
|
|
2015-06-05 01:15:38 -05:00
|
|
|
type SendResetPasswordEmailCommand struct {
|
2015-06-05 04:08:19 -05:00
|
|
|
User *User
|
2015-06-05 01:15:38 -05:00
|
|
|
}
|
|
|
|
|
2015-06-08 06:39:02 -05:00
|
|
|
type ValidateResetPasswordCodeQuery struct {
|
|
|
|
Code string
|
|
|
|
Result *User
|
|
|
|
}
|