Skip to content

Commit

Permalink
[Mailer] Preserve case of headers
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Mar 22, 2022
1 parent 8bada37 commit 30a5a85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Transport/PostmarkApiTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private function getPayload(Email $email, Envelope $envelope): array
}

$payload['Headers'][] = [
'Name' => $name,
'Name' => $header->getName(),
'Value' => $header->getBodyAsString(),
];
}
Expand Down

0 comments on commit 30a5a85

Please sign in to comment.