We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d406b13 commit ba8a3a3Copy full SHA for ba8a3a3
events/ses.go
@@ -49,6 +49,7 @@ type SimpleEmailHeader struct {
49
type SimpleEmailCommonHeaders struct {
50
From []string `json:"from"`
51
To []string `json:"to"`
52
+ Cc []string `json:"cc,omitempty"`
53
ReturnPath string `json:"returnPath"`
54
MessageID string `json:"messageId"`
55
Date string `json:"date"`
events/testdata/ses-sns-event.json
@@ -101,6 +101,10 @@
101
"to": [
102
"recipient@example.com"
103
],
104
+ "cc": [
105
+ "cc@example.com",
106
+ "cc2@example.com"
107
+ ],
108
"messageId": "<61967230-7A45-4A9D-BEC9-87CBCF2211C9@example.com>",
109
"subject": "Example subject"
110
}
0 commit comments