Documentation ¶
Overview ¶
ses.go
ses_types
sign
Index ¶
- Constants
- type Body
- type Content
- type Email
- func (em *Email) AddBCC(address string)
- func (em *Email) AddBCCs(addresses []string)
- func (em *Email) AddCC(address string)
- func (em *Email) AddCCs(addresses []string)
- func (em *Email) AddReplyTo(address string)
- func (em *Email) AddReplyTos(addresses []string)
- func (em *Email) AddTo(address string)
- func (em *Email) AddTos(addresses []string)
- func (em *Email) SetBodyHtml(html string)
- func (em *Email) SetBodyHtmlAsContent(html Content)
- func (em *Email) SetBodyRawText(text string)
- func (em *Email) SetBodyRawTextAsContent(text Content)
- func (em *Email) SetMessage(message Message)
- func (em *Email) SetReturnPath(path string)
- func (em *Email) SetSource(source string)
- func (em *Email) SetSubject(subject string)
- func (em *Email) SetSubjectAsContent(subject Content)
- type Message
- type SES
- type SESError
Constants ¶
const (
AMZ_DATE_STYLE = "Mon, 02 Jan 2006 15:04:05 -0700"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Email ¶
type Email struct {
// contains filtered or unexported fields
}
Email data structure. Should be main data structure used for sending emails using SES.
func (*Email) AddReplyTo ¶
Add a reply-to address to Email.
func (*Email) AddReplyTos ¶
Add multiple reply-to addresses to Email.
func (*Email) SetBodyHtml ¶
Sets the HTML body of the Email message. Uses ASCII as charset.
func (*Email) SetBodyHtmlAsContent ¶
Sets the HTML body of the Email message. Uses the charset (or ASCII if none) of Content.
func (*Email) SetBodyRawText ¶
Sets the raw text body of the Email message. Uses ASCII as charset.
func (*Email) SetBodyRawTextAsContent ¶
Sets the raw test body of the Email message. Uses the charset (or ASCII if none) of Content.
func (*Email) SetReturnPath ¶
Set the return path for Email.
func (*Email) SetSubject ¶
Set the subject for the Email message. Uses ASCII as charset.
func (*Email) SetSubjectAsContent ¶
Set the subject for the Email message. Uses the charset (or ASCII if none) of Content.