We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c4488a commit 8ca43f4Copy full SHA for 8ca43f4
src/Illuminate/Mail/Transport/SesTransport.php
@@ -49,6 +49,11 @@ protected function doSend(SentMessage $message): void
49
array_merge(
50
$this->options, [
51
'Source' => $message->getEnvelope()->getSender()->toString(),
52
+ 'Destinations' => collect($message->getEnvelope()->getRecipients())
53
+ ->map
54
+ ->toString()
55
+ ->values()
56
+ ->all(),
57
'RawMessage' => [
58
'Data' => $message->toString(),
59
],
0 commit comments