Documentation ¶ Index ¶ type Client func New(cfg *Config) (*Client, error) func (c *Client) Close(ctx context.Context) error func (c *Client) Send(ctx context.Context, content string) error type Config func (c Config) Validate() error Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Client ¶ type Client struct { // contains filtered or unexported fields } func New ¶ func New(cfg *Config) (*Client, error) func (*Client) Close ¶ func (c *Client) Close(ctx context.Context) error func (*Client) Send ¶ func (c *Client) Send(ctx context.Context, content string) error type Config ¶ type Config struct { Host string Port int64 Username string Password string To []string } func (Config) Validate ¶ func (c Config) Validate() error Source Files ¶ View all Source files mail.go Click to show internal directories. Click to hide internal directories.