Skip to content

Commit e73d761

Browse files
authored
Update mail docs for SesV2Client (#7165)
Pertaining to `laravel/framework` PR laravel/framework#37878
1 parent 89f33eb commit e73d761

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mail.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,15 @@ Next, set the `default` option in your `config/mail.php` configuration file to `
100100
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
101101
],
102102

103-
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:
103+
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:
104104

105105
'ses' => [
106106
'key' => env('AWS_ACCESS_KEY_ID'),
107107
'secret' => env('AWS_SECRET_ACCESS_KEY'),
108108
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
109109
'options' => [
110110
'ConfigurationSetName' => 'MyConfigurationSet',
111-
'Tags' => [
111+
'EmailTags' => [
112112
['Name' => 'foo', 'Value' => 'bar'],
113113
],
114114
],

0 commit comments

Comments
 (0)