Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrNilConfig indicates an empty API token was provided. ErrNilConfig = errors.New("mailjet config is nil") // ErrEmptySecretKey indicates an empty API token was provided. ErrEmptySecretKey = errors.New("empty domain") // ErrEmptyPrivateAPIKey indicates an empty API token was provided. ErrEmptyPrivateAPIKey = errors.New("empty API token") // ErrNilHTTPClient indicates a nil HTTP client was provided. ErrNilHTTPClient = errors.New("nil HTTP client") )
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { APIKey string `json:"publicKey" toml:"public_key,omitempty"` SecretKey string `json:"secretKey" toml:"secret_key,omitempty"` }
Config configures Mailjet to send email.
type Emailer ¶
type Emailer struct {
// contains filtered or unexported fields
}
Emailer uses Mailjet to send email.
Click to show internal directories.
Click to hide internal directories.