<?php12return [3/*4|--------------------------------------------------------------------------5| Default Mailer6|--------------------------------------------------------------------------7|8| This option controls the default mailer that is used to send any email9| messages sent by your application. Alternative mailers may be setup10| and used as needed; however, this mailer will be used by default.11|12*/1314'default' => env('MAIL_MAILER', env('MAIL_DRIVER', 'smtp')),1516/*17|--------------------------------------------------------------------------18| Mailer Configurations19|--------------------------------------------------------------------------20|21| Here you may configure all of the mailers used by your application plus22| their respective settings. Several examples have been configured for23| you and you are free to add your own as your application requires.24|25| Laravel supports a variety of mail "transport" drivers to be used while26| sending an e-mail. You will specify which one you are using for your27| mailers below. You are free to add additional mailers as required.28|29| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",30| "postmark", "log", "array", "failover"31|32*/3334'mailers' => [35'smtp' => [36'transport' => 'smtp',37'host' => env('MAIL_HOST', '127.0.0.1'),38'port' => env('MAIL_PORT', 2525),39'encryption' => env('MAIL_ENCRYPTION', 'tls'),40'username' => env('MAIL_USERNAME'),41'password' => env('MAIL_PASSWORD'),42'timeout' => null,43'local_domain' => env('MAIL_EHLO_DOMAIN', env('SERVER_NAME')),44],4546'ses' => [47'transport' => 'ses',48],4950'mailgun' => [51'transport' => 'mailgun',52],5354'postmark' => [55'transport' => 'postmark',56],5758'sendmail' => [59'transport' => 'sendmail',60'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),61],6263'log' => [64'transport' => 'log',65'channel' => env('MAIL_LOG_CHANNEL'),66],6768'array' => [69'transport' => 'array',70],7172'failover' => [73'transport' => 'failover',74'mailers' => [75'smtp',76'log',77],78],79],8081/*82|--------------------------------------------------------------------------83| Global "From" Address84|--------------------------------------------------------------------------85|86| You may wish for all emails sent by your application to be sent from87| the same address. Here you may specify a name and address that is88| used globally for all emails that are sent by your application.89|90*/9192'from' => [93'address' => env('MAIL_FROM_ADDRESS', env('MAIL_FROM', '[email protected]')),94'name' => env('MAIL_FROM_NAME', 'Pterodactyl Panel'),95],9697/*98|--------------------------------------------------------------------------99| Markdown Mail Settings100|--------------------------------------------------------------------------101|102| If you are using Markdown based email rendering, you may configure your103| theme and component paths here, allowing you to customize the design104| of the emails. Or, you may simply stick with the Laravel defaults!105|106*/107108'markdown' => [109'theme' => 'default',110111'paths' => [112resource_path('views/vendor/mail'),113],114],115];116117118