You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
990 B
30 lines
990 B
<?php |
|
|
|
return [ |
|
'default' => env('MAIL_MAILER', 'smtp'), |
|
'mailers' => [ |
|
'smtp' => [ |
|
'transport' => 'smtp', |
|
'scheme' => env('MAIL_SCHEME'), |
|
'url' => env('MAIL_URL'), |
|
'host' => env('MAIL_HOST', 'sc138.idcloudhosting.cloud'), |
|
'port' => env('MAIL_PORT', 465), |
|
'username' => env('MAIL_USERNAME'), |
|
'password' => env('MAIL_PASSWORD'), |
|
'encryption' => env('MAIL_ENCRYPTION', 'ssl'), |
|
'timeout' => null, |
|
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)), |
|
], |
|
'log' => [ |
|
'transport' => 'log', |
|
'channel' => env('MAIL_LOG_CHANNEL'), |
|
], |
|
'array' => [ |
|
'transport' => 'array', |
|
], |
|
], |
|
'from' => [ |
|
'address' => env('MAIL_FROM_ADDRESS', 'support@geonet.co.id'), |
|
'name' => env('MAIL_FROM_NAME', 'Geonet Support'), |
|
], |
|
];
|
|
|