mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
12 lines
184 B
Go
12 lines
184 B
Go
package setting
|
|
|
|
type SmtpSettings struct {
|
|
Host string
|
|
User string
|
|
Password string
|
|
CertFile string
|
|
KeyFile string
|
|
FromAddress string
|
|
SkipVerify bool
|
|
}
|