Documentation
¶
Overview ¶
Package email implements a Pilot notification plugin that sends events as plain-text emails via an SMTP server.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
Host string `json:"host"`
Port int `json:"port"` // default: 587
Username string `json:"username,omitempty"`
Password string `json:"password,omitempty"`
From string `json:"from"`
To []string `json:"to"`
TLS bool `json:"tls,omitempty"` // use TLS (port 465 style); false = STARTTLS
}
Config holds the user-supplied settings for an email notifier.
Click to show internal directories.
Click to hide internal directories.