We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb24e34 commit d6fc420Copy full SHA for d6fc420
src/Illuminate/Mail/MailManager.php
@@ -288,10 +288,17 @@ protected function createPostmarkTransport(array $config)
288
{
289
$factory = new PostmarkTransportFactory();
290
291
+ $options = isset($config['message_stream_id'])
292
+ ? ['message_stream' => $config['message_stream_id']]
293
+ : [];
294
+
295
return $factory->create(new Dsn(
296
'postmark+api',
297
'default',
- $config['token'] ?? $this->app['config']->get('services.postmark.token')
298
+ $config['token'] ?? $this->app['config']->get('services.postmark.token'),
299
+ null,
300
301
+ $options
302
));
303
}
304
0 commit comments