mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
07582a8e85
* Chore: Fix various spelling errors in back-end code Co-authored-by: Sofia Papagiannaki <papagian@users.noreply.github.com> Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>>
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
package models
|
|
|
|
import "errors"
|
|
|
|
var ErrInvalidEmailCode = errors.New("Invalid or expired email code")
|
|
var ErrSmtpNotEnabled = errors.New("SMTP not configured, check your grafana.ini config file's [smtp] section")
|
|
|
|
// SendEmailAttachFile is a definition of the attached files without path
|
|
type SendEmailAttachFile struct {
|
|
Name string
|
|
Content []byte
|
|
}
|
|
|
|
// SendEmailCommand is command for sending emails
|
|
type SendEmailCommand struct {
|
|
To []string
|
|
SingleEmail bool
|
|
Template string
|
|
Subject string
|
|
Data map[string]interface{}
|
|
Info string
|
|
ReplyTo []string
|
|
EmbeddedFiles []string
|
|
AttachedFiles []*SendEmailAttachFile
|
|
}
|
|
|
|
// SendEmailCommandSync is command for sending emails in sync
|
|
type SendEmailCommandSync struct {
|
|
SendEmailCommand
|
|
}
|
|
|
|
type SendWebhookSync struct {
|
|
Url string
|
|
User string
|
|
Password string
|
|
Body string
|
|
HttpMethod string
|
|
HttpHeader map[string]string
|
|
ContentType string
|
|
}
|
|
|
|
type SendResetPasswordEmailCommand struct {
|
|
User *User
|
|
}
|
|
|
|
type ValidateResetPasswordCodeQuery struct {
|
|
Code string
|
|
Result *User
|
|
}
|