1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
package ses
import (
"crypto/hmac"
"crypto/sha256"
"encoding/base64"
"encoding/xml"
"fmt"
"net/http"
"net/url"
"strings"
"time"
"github.com/AdRoll/goamz/aws"
)
const MAX_RECIPIENTS_PER_REQUEST = 50
type SES struct {
Auth aws.Auth
Region aws.Region
}
// Represents the destination of the message, consisting
// of To:, CC:, and BCC: fields.
type Destination struct {
ToAddresses []string
CcAddresses []string
BccAddresses []string
}
// Represents textual data, plus an optional character set specification.
// By default, the text must be 7-bit ASCII, due to the constraints of the
// SMTP protocol. If the text must contain any other characters, then you must
// also specify a character set. Examples include UTF-8, ISO-8859-1, and Shift_JIS.
type Content struct {
Charset string
Data string
}
// Represents the body of the message. You can specify text, HTML,
// or both. If you use both, then the message should display
// correctly in the widest variety of email clients.
type Body struct {
Html *Content
Text *Content
}
// Represents the message to be sent, composed of a subject and a body.
type Message struct {
Subject *Content
Body *Body
}
type SendEmailResult struct {
MessageId string `xml:"MessageId"`
}
type ResponseMetadata struct {
MessageId string `xml:"RequestId"`
}
// Represents a unique message ID returned from a successful SendEmail request.
type SendEmailResponse struct {
XMLName xml.Name `xml:"SendEmailResponse"`
SendEmailResult SendEmailResult `xml:"SendEmailResult"`
ResponseMetadata ResponseMetadata `xml:"ResponseMetadata"`
}
type Error struct {
StatusCode int `xml:"StatusCode"`
Code string `xml:"Code"`
Message string `xml:"Message"`
}
func (err *Error) Error() string {
if err.Code == "" {
return err.Message
}
return fmt.Sprintf("%s (%s)", err.Message, err.Code)
}
func (err *Error) String() string {
return err.Message
}
type ErrorResponse struct {
XMLName xml.Name `xml:"ErrorResponse"`
RequestId string `xml:"RequestId"`
Error Error `xml:"Error"`
}
// Creates a new destination
// TODO: specify address encoding
func NewDestination(toAddresses, ccAddresses, bccAddresses []string) *Destination {
return &Destination{
ToAddresses: toAddresses,
CcAddresses: ccAddresses,
BccAddresses: bccAddresses,
}
}
// Creates a new message with UTF-8 encoding
func NewMessage(subject, textBody, htmlBody string) *Message {
return &Message{
Subject: &Content{
Data: subject,
Charset: "utf-8",
},
Body: &Body{
Text: &Content{
Data: textBody,
Charset: "utf-8",
},
Html: &Content{
Data: htmlBody,
Charset: "utf-8",
},
},
}
}
// Creates a new instance of the SES client
func New(auth aws.Auth, region aws.Region) *SES {
return &SES{
Auth: auth,
Region: region,
}
}
func (s *SES) SendEmail(fromAddress string, destination *Destination, message *Message) (*SendEmailResponse, error) {
if err := enforceMaxRecipients(destination); err != nil {
return nil, err
}
params := s.composeRequestParams(fromAddress, destination, message)
body := strings.NewReader(params.Encode())
req, err := http.NewRequest("POST", s.Region.SESEndpoint, body)
if err != nil {
return nil, err
}
req.Header = s.composeRequestHeader()
client := &http.Client{}
r, err := client.Do(req)
if err != nil {
return nil, err
}
//close the body at the end of the method
defer r.Body.Close()
if r.StatusCode != 200 {
return nil, buildError(r)
}
resp := &SendEmailResponse{}
err = xml.NewDecoder(r.Body).Decode(&resp)
if err != nil {
return nil, err
}
return resp, nil
}
func (s *SES) composeRequestParams(fromAddress string, destination *Destination, message *Message) url.Values {
params := make(url.Values)
params.Add("AWSAccessKeyId", s.Auth.AccessKey)
params.Add("Action", "SendEmail")
params.Add("Source", fromAddress)
for index, addrs := range destination.ToAddresses {
params.Add(fmt.Sprintf("Destination.ToAddresses.member.%d", index+1), addrs)
}
for index, addrs := range destination.CcAddresses {
params.Add(fmt.Sprintf("Destination.CcAddresses.member.%d", index+1), addrs)
}
for index, addrs := range destination.BccAddresses {
params.Add(fmt.Sprintf("Destination.BccAddresses.member.%d", index+1), addrs)
}
params.Add("Message.Subject.Data", message.Subject.Data)
params.Add("Message.Subject.Charset", message.Subject.Charset)
params.Add("Message.Body.Text.Data", message.Body.Text.Data)
params.Add("Message.Body.Text.Charset", message.Body.Text.Charset)
params.Add("Message.Body.Html.Data", message.Body.Html.Data)
params.Add("Message.Body.Html.Charset", message.Body.Html.Charset)
return params
}
// http://docs.aws.amazon.com/ses/latest/APIReference/API_SendEmail.html
func enforceMaxRecipients(d *Destination) error {
addressCount := len(d.ToAddresses) + len(d.CcAddresses) + len(d.BccAddresses)
if addressCount > MAX_RECIPIENTS_PER_REQUEST {
return fmt.Errorf("Too many recipients. Found: %d, max %d", addressCount, MAX_RECIPIENTS_PER_REQUEST)
}
return nil
}
func (s *SES) composeRequestHeader() http.Header {
headers := http.Header{}
now := time.Now().UTC()
date := now.Format("Mon, 02 Jan 2006 15:04:05 -0700")
headers.Set("Date", date)
if s.Auth.Token() != "" {
headers.Set("X-Amz-Security-Token", s.Auth.Token())
}
h := hmac.New(sha256.New, []uint8(s.Auth.SecretKey))
h.Write([]uint8(date))
signature := base64.StdEncoding.EncodeToString(h.Sum(nil))
auth := fmt.Sprintf("AWS3-HTTPS AWSAccessKeyId=%s, Algorithm=HmacSHA256, Signature=%s", s.Auth.AccessKey, signature)
headers.Set("X-Amzn-Authorization", auth)
headers.Set("Content-Type", "application/x-www-form-urlencoded")
return headers
}
func buildError(r *http.Response) error {
errorResponse := ErrorResponse{}
err := xml.NewDecoder(r.Body).Decode(&errorResponse)
if err != nil {
return err
}
return &errorResponse.Error
}
|