Initial release

This commit is contained in:
netlas
2026-03-04 02:02:04 +02:00
parent 791e07a73f
commit 1b5fd82894
9 changed files with 560 additions and 0 deletions

55
config/leadmail.php Normal file
View File

@@ -0,0 +1,55 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| LeadMail Service URL
|--------------------------------------------------------------------------
|
| The base URL of your leadMail service instance.
|
*/
'url' => env('LEADMAIL_URL', 'https://mail.leadmagnet.dev'),
/*
|--------------------------------------------------------------------------
| API Token
|--------------------------------------------------------------------------
|
| The bearer token for authenticating with the leadMail API.
| Generate this in the leadMail admin dashboard.
|
*/
'token' => env('LEADMAIL_TOKEN'),
/*
|--------------------------------------------------------------------------
| Request Timeout
|--------------------------------------------------------------------------
|
| Maximum number of seconds to wait for API responses.
|
*/
'timeout' => env('LEADMAIL_TIMEOUT', 30),
/*
|--------------------------------------------------------------------------
| SSL Verification
|--------------------------------------------------------------------------
|
| Whether to verify SSL certificates. Disable only for local development.
|
*/
'verify_ssl' => env('LEADMAIL_VERIFY_SSL', true),
/*
|--------------------------------------------------------------------------
| Auto Tenant Detection
|--------------------------------------------------------------------------
|
| When enabled and stancl/tenancy is installed, automatically sends the
| current tenant's key as the X-Tenant-Id header on every request.
|
*/
'auto_tenant' => env('LEADMAIL_AUTO_TENANT', true),
];