Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Email ¶
type Email struct { // Name of the channel Name string `json:"name" yaml:"name" hcl:"name,label"` // From field From string `json:"from" yaml:"from" hcl:"from"` // To field To string `json:"to" yaml:"to" hcl:"to"` // Cc field Cc string `json:"cc" yaml:"cc" hcl:"cc,optional"` // Host value Host string `json:"host" yaml:"host" hcl:"host"` // Port value Port string `json:"port" yaml:"port" hcl:"port"` // Username value Username string `json:"username" yaml:"username" hcl:"username"` // Password value Password string `json:"password" yaml:"password" hcl:"password"` // Secure value Secure string `json:"secure" yaml:"secure" hcl:"secure"` // Timeout value Timeout int `json:"timeout" yaml:"timeout" hcl:"timeout,optional"` Ignore bool `json:"ignore" yaml:"ignore" hcl:"ignore,optional"` }
Email configures notifications via email.
Click to show internal directories.
Click to hide internal directories.