From 9281dddd7caee5490b784a4dce44bf974369968d Mon Sep 17 00:00:00 2001 From: Chris Fidao Date: Thu, 1 Jul 2021 07:42:54 -0500 Subject: [PATCH] Update mail docs for SesV2Client Pertaining to `laravel/framework` PR https://github.com/laravel/framework/pull/37878 --- mail.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mail.md b/mail.md index ee3c4820364..1ae47e86b1f 100644 --- a/mail.md +++ b/mail.md @@ -100,7 +100,7 @@ Next, set the `default` option in your `config/mail.php` configuration file to ` 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), ], -If you would like to define [additional options](https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-email-2010-12-01.html#sendrawemail) that Laravel should pass to the AWS SDK's `SendRawEmail` method when sending an email, you may define an `options` array within your `ses` configuration: +If you would like to define [additional options](https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-sesv2-2019-09-27.html#sendemail) that Laravel should pass to the AWS SDK's `SendEmail` method when sending an email, you may define an `options` array within your `ses` configuration: 'ses' => [ 'key' => env('AWS_ACCESS_KEY_ID'), @@ -108,7 +108,7 @@ If you would like to define [additional options](https://docs.aws.amazon.com/aws 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 'options' => [ 'ConfigurationSetName' => 'MyConfigurationSet', - 'Tags' => [ + 'EmailTags' => [ ['Name' => 'foo', 'Value' => 'bar'], ], ],