18 lines
477 B
PHP
18 lines
477 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default Mail Receiver
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option controls the default mail receiver that is used to receive any email
|
|
| messages sent by third party application.
|
|
|
|
|
| Supported: "webklex-imap", "sendgrid"
|
|
|
|
|
*/
|
|
|
|
'default' => env('MAIL_RECEIVER_DRIVER', 'sendgrid'),
|
|
];
|