Documentation
¶
Overview ¶
Package mail provides a small wrapper around AWS SES for sending emails.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Client ¶
Client is the mail client.
type Email ¶
type Email struct {
// From is the source email.
From string
// To is a set of destination emails.
To []string
// ReplyTo is a set of reply to emails.
ReplyTo []string
// Subject is the email subject text.
Subject string
// Text is the plain text representation of the body.
Text string
// HTML is the HTML representation of the body.
HTML string
}
Email options.
Click to show internal directories.
Click to hide internal directories.