Skip to content

Commit 3c3b023

Browse files
author
Guillaume Verstraete
committed
[Mailer] Fix addresses management in Sendgrid API payload
1 parent 03a5da8 commit 3c3b023

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

Tests/Transport/SendgridApiTransportTest.php

+11-4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
use PHPUnit\Framework\TestCase;
1515
use Symfony\Component\Mailer\Bridge\Sendgrid\Transport\SendgridApiTransport;
16+
use Symfony\Component\Mime\Address;
1617
use Symfony\Component\Mime\Email;
1718
use Symfony\Contracts\HttpClient\HttpClientInterface;
1819
use Symfony\Contracts\HttpClient\ResponseInterface;
@@ -48,8 +49,8 @@ public function getTransportData()
4849
public function testSend()
4950
{
5051
$email = new Email();
51-
$email->from('[email protected]')
52-
52+
$email->from(new Address('[email protected]', 'Ms. Foo Bar'))
53+
->to(new Address('[email protected]', 'Mr. Recipient'))
5354
5455
->text('content');
5556

@@ -73,12 +74,18 @@ public function testSend()
7374
'json' => [
7475
'personalizations' => [
7576
[
76-
'to' => [['email' => '[email protected]']],
77+
'to' => [[
78+
'email' => '[email protected]',
79+
'name' => 'Mr. Recipient',
80+
]],
7781
'subject' => null,
7882
'bcc' => [['email' => '[email protected]']],
7983
],
8084
],
81-
'from' => ['email' => '[email protected]'],
85+
'from' => [
86+
'email' => '[email protected]',
87+
'name' => 'Ms. Foo Bar',
88+
],
8289
'content' => [
8390
['type' => 'text/plain', 'value' => 'content'],
8491
],

Transport/SendgridApiTransport.php

+10-2
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,19 @@ protected function doSendApi(SentMessage $sentMessage, Email $email, Envelope $e
6363

6464
private function getPayload(Email $email, Envelope $envelope): array
6565
{
66-
$addressStringifier = function (Address $address) {return ['email' => $address->toString()]; };
66+
$addressStringifier = function (Address $address) {
67+
$stringified = ['email' => $address->getAddress()];
68+
69+
if ($address->getName()) {
70+
$stringified['name'] = $address->getName();
71+
}
72+
73+
return $stringified;
74+
};
6775

6876
$payload = [
6977
'personalizations' => [],
70-
'from' => ['email' => $envelope->getSender()->toString()],
78+
'from' => $addressStringifier($envelope->getSender()),
7179
'content' => $this->getContent($email),
7280
];
7381

0 commit comments

Comments
 (0)