diff --git a/src/Illuminate/Mail/Transport/SesTransport.php b/src/Illuminate/Mail/Transport/SesTransport.php index 3938d510834b..41022c2c2caf 100644 --- a/src/Illuminate/Mail/Transport/SesTransport.php +++ b/src/Illuminate/Mail/Transport/SesTransport.php @@ -49,6 +49,11 @@ protected function doSend(SentMessage $message): void array_merge( $this->options, [ 'Source' => $message->getEnvelope()->getSender()->toString(), + 'Destinations' => collect($message->getEnvelope()->getRecipients()) + ->map + ->toString() + ->values() + ->all(), 'RawMessage' => [ 'Data' => $message->toString(), ],