File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
src/Illuminate/Mail/Transport Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ protected function doSend(SentMessage $message): void
51
51
if ($ message ->getOriginalMessage () instanceof Message) {
52
52
foreach ($ message ->getOriginalMessage ()->getHeaders ()->all () as $ header ) {
53
53
if ($ header instanceof MetadataHeader) {
54
- $ options ['EmailTags ' ][] = ['Name ' => $ header ->getKey (), 'Value ' => $ header ->getValue ()];
54
+ $ options ['Tags ' ][] = ['Name ' => $ header ->getKey (), 'Value ' => $ header ->getValue ()];
55
55
}
56
56
}
57
57
}
Original file line number Diff line number Diff line change 10
10
use Illuminate \View \Factory ;
11
11
use Mockery as m ;
12
12
use PHPUnit \Framework \TestCase ;
13
+ use Symfony \Component \Mailer \Header \MetadataHeader ;
13
14
use Symfony \Component \Mime \Email ;
14
15
15
16
class MailSesTransportTest extends TestCase
@@ -55,6 +56,7 @@ public function testSend()
55
56
$ message ->sender ('myself@example.com ' );
56
57
$ message ->to ('me@example.com ' );
57
58
$ message ->bcc ('you@example.com ' );
59
+ $ message ->getHeaders ()->add (new MetadataHeader ('FooTag ' , 'TagValue ' ));
58
60
59
61
$ client = m::mock (SesClient::class);
60
62
$ sesResult = m::mock ();
@@ -63,6 +65,11 @@ public function testSend()
63
65
->once ()
64
66
->andReturn ('ses-message-id ' );
65
67
$ client ->shouldReceive ('sendRawEmail ' )->once ()
68
+ ->with (m::on (function ($ arg ) {
69
+ return $ arg ['Source ' ] === 'myself@example.com ' &&
70
+ $ arg ['Destinations ' ] === ['me@example.com ' , 'you@example.com ' ] &&
71
+ $ arg ['Tags ' ] === [['Name ' => 'FooTag ' , 'Value ' => 'TagValue ' ]];
72
+ }))
66
73
->andReturn ($ sesResult );
67
74
68
75
(new SesTransport ($ client ))->send ($ message );
You can’t perform that action at this time.
0 commit comments