Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrNilConfig indicates an empty API token was provided. ErrNilConfig = errors.New("SendGrid config is nil") // ErrEmptyAPIToken indicates an empty API token was provided. ErrEmptyAPIToken = errors.New("empty API token") // ErrNilHTTPClient indicates a nil HTTP client was provided. ErrNilHTTPClient = errors.New("nil HTTP client") )
View Source
var ErrSendgridAPIIssue = errors.New("making SendGrid request")
ErrSendgridAPIIssue indicates an error occurred in SendGrid.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
APIToken string `json:"apiToken" toml:"api_token,omitempty"`
}
Config configures SendGrid to send email.
type Emailer ¶
type Emailer struct {
// contains filtered or unexported fields
}
Emailer uses SendGrid to send email.
Click to show internal directories.
Click to hide internal directories.