Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.45 KB | None | 0 0
  1. sesEmailInput := &ses.SendEmailInput{
  2.         Destination: &ses.Destination{
  3.             ToAddresses:  []*string{aws.String(to)},
  4.             BccAddresses:  []*string{aws.String(bcc)},
  5.         },
  6.         Message: &ses.Message{
  7.             Body: &ses.Body{
  8.                 Html: &ses.Content{
  9.                     Data: aws.String(content)},
  10.             },
  11.             Subject: &ses.Content{
  12.                 Data: aws.String(subject),
  13.             },
  14.         },
  15.         Source: aws.String(name +""+ from),
  16.         ReplyToAddresses: []*string{
  17.             aws.String(from),
  18.         },
  19.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement