env("MAIL_MAILER", "smtp"), "mailers" => [ "smtp" => [ "transport" => "smtp", "host" => env("MAIL_HOST", "smtp.mailgun.org"), "port" => env("MAIL_PORT", 587), "encryption" => env("MAIL_ENCRYPTION", "tls"), "username" => env("MAIL_USERNAME"), "password" => env("MAIL_PASSWORD"), "timeout" => null, "auth_mode" => null, ], "log" => [ "transport" => "log", "channel" => env("MAIL_LOG_CHANNEL"), ], "array" => [ "transport" => "array", ], "failover" => [ "transport" => "failover", "mailers" => [ "smtp", "log", ], ], ], "from" => [ "address" => env("MAIL_FROM_ADDRESS", "hello@example.com"), "name" => env("MAIL_FROM_NAME", "Example"), ], "markdown" => [ "theme" => "default", "paths" => [ resource_path("views/vendor/mail"), ], ], ];