Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current none :
/
var
/
www
/
html
/
tpid-jjseeds
/
sapi-jjseeds.technopartner.id
/
config
/
Or
Select Your none :
Upload File :
New :
File
Dir
/var/www/html/tpid-jjseeds/sapi-jjseeds.technopartner.id/config/mail.php
<?php $service = env('MAIL_DRIVER', 'smtp'); if ($service == "mailgun") { return [ 'driver' => env('MAIL_DRIVER', 'smtp'), 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), 'port' => env('MAIL_PORT', 587), 'from' => [ 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), 'name' => env('MAIL_FROM_NAME', 'Hello'), ], 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 'username' => env('MAIL_USERNAME'), 'password' => env('MAIL_PASSWORD'), 'sendmail' => '/usr/sbin/sendmail -bs', 'markdown' => [ 'theme' => 'default', 'paths' => [ resource_path('views/vendor/mail'), ], ], 'log_channel' => env('MAIL_LOG_CHANNEL'), ]; }elseif($service == 'smtp'){ return [ 'driver' => env('MAIL_DRIVER', 'smtp'), 'host' => env('MAIL_HOST_SES', 'smtp.mailgun.org'), 'port' => env('MAIL_PORT_SES', 587), 'from' => [ 'address' => env('MAIL_FROM_ADDRESS_SES', 'hello@example.com'), 'name' => env('MAIL_FROM_NAME_SES', 'Hello'), ], 'encryption' => env('MAIL_ENCRYPTION_SES', 'tls'), 'username' => env('MAIL_USERNAME_SES'), 'password' => env('MAIL_PASSWORD_SES'), 'sendmail' => '/usr/sbin/sendmail -bs', 'markdown' => [ 'theme' => 'default', 'paths' => [ resource_path('views/vendor/mail'), ], ], 'log_channel' => env('MAIL_LOG_CHANNEL'), ]; }