Documentation
¶
Overview ¶
Package driver defines interfaces to be implemented by email_sender drivers as used by package emailsender.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Conn ¶
type Conn interface {
// SendHTML sends an HTML email to multiple recipients.
SendHTML(to []string, from, subj, html string) error
// SendPlainText sends a PlainText email to multiple recipients.
SendPlainText(to []string, from, subj, plaintext string) error
// Close the connection.
Close() error
}
Conn is a connection to the external email service.
Click to show internal directories.
Click to hide internal directories.