mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 06:32:40 +01:00
Fixes for post mark mailer
This commit is contained in:
parent
c5fe25839b
commit
e844d4715b
@ -36,18 +36,21 @@ class MailServiceProvider extends MailProvider
|
||||
});
|
||||
|
||||
$this->app['mail.manager']->extend('postmark', function () {
|
||||
return new HttpClient(array_merge($config, [
|
||||
'base_uri' => empty($config['base_uri'])
|
||||
? 'https://api.postmarkapp.com'
|
||||
: $config['base_uri']
|
||||
]));
|
||||
return new PostmarkTransport(
|
||||
$this->guzzle(config('postmark.guzzle', [])),
|
||||
config('postmark.secret')
|
||||
);
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
protected function guzzle(array $config): HttpClient
|
||||
{
|
||||
return new HttpClient($config);
|
||||
return new HttpClient(array_merge($config, [
|
||||
'base_uri' => empty($config['base_uri'])
|
||||
? 'https://api.postmarkapp.com'
|
||||
: $config['base_uri']
|
||||
]));
|
||||
}
|
||||
|
||||
public function provides()
|
||||
|
Loading…
Reference in New Issue
Block a user