File tree 4 files changed +8
-3
lines changed
4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"variables" : {
3
- "${LATEST}" : " 3.283.3 "
3
+ "${LATEST}" : " 3.283.4 "
4
4
},
5
5
"endpoints" : " https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json" ,
6
6
"services" : {
Original file line number Diff line number Diff line change 9
9
### Changed
10
10
11
11
- Allow passing explicit null values for optional fields of input objects
12
+ - AWS enhancement: Documentation updates.
12
13
13
14
## 1.6.0
14
15
Original file line number Diff line number Diff line change @@ -24,7 +24,9 @@ final class EmailContent
24
24
* - All of the required header fields must be present in the message.
25
25
* - Each part of a multipart MIME message must be formatted properly.
26
26
* - If you include attachments, they must be in a file format that the Amazon SES API v2 supports.
27
- * - The entire message must be Base64 encoded.
27
+ * - The raw data of the message needs to base64-encoded if you are accessing Amazon SES directly through the HTTPS
28
+ * interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base
29
+ * 64-encoding for you.
28
30
* - If any of the MIME parts in your message contain content that is outside of the 7-bit ASCII character range, you
29
31
* should encode that content to ensure that recipients' email clients render the message properly.
30
32
* - The length of any single line of text in the message can't exceed 1,000 characters. This restriction is defined in
Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ final class RawMessage
16
16
* - All of the required header fields must be present in the message.
17
17
* - Each part of a multipart MIME message must be formatted properly.
18
18
* - Attachments must be in a file format that the Amazon SES supports.
19
- * - The entire message must be Base64 encoded.
19
+ * - The raw data of the message needs to base64-encoded if you are accessing Amazon SES directly through the HTTPS
20
+ * interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base
21
+ * 64-encoding for you.
20
22
* - If any of the MIME parts in your message contain content that is outside of the 7-bit ASCII character range, you
21
23
* should encode that content to ensure that recipients' email clients render the message properly.
22
24
* - The length of any single line of text in the message can't exceed 1,000 characters. This restriction is defined in
You can’t perform that action at this time.
0 commit comments