| Current Path : /home/users/unlimited/www/whatsapp-crm/vendor/resend/resend-laravel/config/ |
| Current File : /home/users/unlimited/www/whatsapp-crm/vendor/resend/resend-laravel/config/resend.php |
<?php
return [
/*
|--------------------------------------------------------------------------
| Resend API Key
|--------------------------------------------------------------------------
|
| The Resend API key give you access to Resend's API. The "api_key" is
| typically used to make a email request to the API.
|
*/
'api_key' => env('RESEND_API_KEY'),
/*
|--------------------------------------------------------------------------
| Resend Domain
|--------------------------------------------------------------------------
|
| This is the subdomain where the package routes will be accessible from.
| If the setting is null, Resend will reside under the same domain as your
| application. Otherwise, this value will be used as the subdomain.
|
*/
'domain' => env('RESEND_DOMAIN', null),
/*
|--------------------------------------------------------------------------
| Resend Path
|--------------------------------------------------------------------------
|
| This is the base URI path where the package routes, such as the webhook
| handler, will be available from. You are free to tweak the path to your
| preference and application design.
|
*/
'path' => env('RESEND_PATH', 'resend'),
/*
|--------------------------------------------------------------------------
| Resend Webhooks
|--------------------------------------------------------------------------
|
| Your Resend webhook secret is used to prevent unauthorized requestes to
| your Resend webhook handling controllers. The tolerance setting will
| check the drift between the current time and the signed request's.
|
*/
'webhook' => [
'secret' => env('RESEND_WEBHOOK_SECRET'),
'tolerance' => env('RESEND_WEBHOOK_TOLERANCE', 300),
],
];