invoiceninja/config/postmark.php

31 lines
764 B
PHP
Raw Permalink Normal View History

2021-02-22 14:39:53 +11:00
<?php
return [
2023-01-11 19:29:27 +11:00
/* @deprecated
2021-02-22 14:39:53 +11:00
|--------------------------------------------------------------------------
| Postmark credentials
|--------------------------------------------------------------------------
|
| Here you may provide your Postmark server API token.
|
*/
'secret' => env('POSTMARK_SECRET'),
/*
|--------------------------------------------------------------------------
| Guzzle options
|--------------------------------------------------------------------------
|
| Under the hood we use Guzzle to make API calls to Postmark.
| Here you may provide any request options for Guzzle.
|
*/
'guzzle' => [
2022-11-11 10:13:11 +11:00
'timeout' => 120,
'connect_timeout' => 120,
2021-02-22 14:39:53 +11:00
],
];