Documentation ¶
Overview ¶
ses is a Go package to send emails using Amazon's Simple Email Service.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AmazonResponse ¶
type AmazonResponse struct { MessageId string `xml:"SendEmailResult>MessageId"` RequestId string `xml:"ResponseMetadata>RequestId"` }
for your convenience, a struct you can use with encoding/xml on the server's response
type SES ¶
type SES struct {
// contains filtered or unexported fields
}
func Init ¶
Init creates a SES object that can be used to send email. accessKey and secretKey must be set, and it errors if they are not, but endpoint is assumed to be "https://email.us-east-1.amazonaws.com" if it is not set.
func (*SES) SendHTMLMail ¶
Click to show internal directories.
Click to hide internal directories.