@@ -13,6 +13,7 @@ class Transport extends AbstractTransport
13
13
{
14
14
/**
15
15
* Graph api configuration
16
+ *
16
17
* @var array
17
18
*/
18
19
private array $ config ;
@@ -23,16 +24,15 @@ public function __construct(array $config)
23
24
$ this ->config = $ config ;
24
25
}
25
26
26
-
27
27
protected function doSend (SentMessage $ message ): void
28
28
{
29
29
$ token = $ this ->getToken ();
30
30
$ email = MessageConverter::toEmail ($ message ->getOriginalMessage ());
31
31
$ url = sprintf ('https://graph.microsoft.com/v1.0/users/%s/sendMail ' , $ email ->getFrom ()[0 ]->getEncodedAddress ());
32
32
$ response = Http::withHeaders ([
33
- 'Authorization ' => sprintf ('Bearer %s ' , $ token )
33
+ 'Authorization ' => sprintf ('Bearer %s ' , $ token ),
34
34
])->post ($ url , [
35
- " message " => $ this ->getMessage ($ email )
35
+ ' message ' => $ this ->getMessage ($ email ),
36
36
]);
37
37
$ response ->throw ();
38
38
}
@@ -44,7 +44,7 @@ public function getToken()
44
44
'client_id ' => $ this ->config ['client_id ' ],
45
45
'client_secret ' => $ this ->config ['client_secret ' ],
46
46
'scope ' => 'https://graph.microsoft.com/.default ' ,
47
- 'grant_type ' => 'client_credentials '
47
+ 'grant_type ' => 'client_credentials ' ,
48
48
]);
49
49
$ response ->throw ();
50
50
@@ -62,18 +62,18 @@ public function __toString(): string
62
62
private function getMessage (Email $ email )
63
63
{
64
64
return array_filter ([
65
- " from " => $ this ->getRecipient ($ email ->getFrom ()[0 ]),
66
- " sender " => $ this ->getRecipient ($ email ->getFrom ()[0 ]),
67
- " toRecipients " => $ this ->getRecipientsCollection ($ email ->getTo ()),
68
- " ccRecipients " => $ this ->getRecipientsCollection ($ email ->getCc ()),
69
- " bccRecipients " => $ this ->getRecipientsCollection ($ email ->getBcc ()),
70
- " replyTo " => $ this ->getRecipientsCollection ($ email ->getReplyTo ()),
71
- " subject " => $ email ->getSubject (),
72
- " body " => [
73
- " contentType " => $ email ->getTextBody () ? 'Text ' : 'HTML ' ,
74
- " content " => $ email ->getTextBody () ?? $ email ->getHtmlBody (),
65
+ ' from ' => $ this ->getRecipient ($ email ->getFrom ()[0 ]),
66
+ ' sender ' => $ this ->getRecipient ($ email ->getFrom ()[0 ]),
67
+ ' toRecipients ' => $ this ->getRecipientsCollection ($ email ->getTo ()),
68
+ ' ccRecipients ' => $ this ->getRecipientsCollection ($ email ->getCc ()),
69
+ ' bccRecipients ' => $ this ->getRecipientsCollection ($ email ->getBcc ()),
70
+ ' replyTo ' => $ this ->getRecipientsCollection ($ email ->getReplyTo ()),
71
+ ' subject ' => $ email ->getSubject (),
72
+ ' body ' => [
73
+ ' contentType ' => $ email ->getTextBody () ? 'Text ' : 'HTML ' ,
74
+ ' content ' => $ email ->getTextBody () ?? $ email ->getHtmlBody (),
75
75
],
76
- " attachments " => $ this ->getAttachmentsCollection ($ email ->getAttachments ())
76
+ ' attachments ' => $ this ->getAttachmentsCollection ($ email ->getAttachments ()),
77
77
]);
78
78
}
79
79
@@ -91,7 +91,7 @@ private function getRecipient($address): array
91
91
'emailAddress ' => array_filter ([
92
92
'address ' => $ address ->getAddress (),
93
93
'name ' => $ address ->getName (),
94
- ])
94
+ ]),
95
95
];
96
96
}
97
97
@@ -106,10 +106,10 @@ private function getAttachmentsCollection($attachments)
106
106
private function getAttachment (DataPart $ attachment )
107
107
{
108
108
return array_filter ([
109
- " @odata.type " => " #microsoft.graph.fileAttachment " ,
110
- " name " => $ attachment ->getName () ?? $ attachment ->getFilename (),
111
- " contentType " => $ attachment ->getContentType (),
112
- " contentBytes " => base64_encode ($ attachment ->getBody ()),
109
+ ' @odata.type ' => ' #microsoft.graph.fileAttachment ' ,
110
+ ' name ' => $ attachment ->getName () ?? $ attachment ->getFilename (),
111
+ ' contentType ' => $ attachment ->getContentType (),
112
+ ' contentBytes ' => base64_encode ($ attachment ->getBody ()),
113
113
]);
114
114
}
115
115
}
0 commit comments