mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:37:34 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			750 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			750 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
 | 
						|
    /*
 | 
						|
    |--------------------------------------------------------------------------
 | 
						|
    | 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' => [
 | 
						|
        'timeout' => 10,
 | 
						|
        'connect_timeout' => 10,
 | 
						|
    ],
 | 
						|
];
 |