@extends('layouts.admin') @include('partials/admin.settings.nav', ['activeTab' => 'mail']) @section('title') Mail Settings @endsection @section('content-header')

Mail SettingsConfigure how Pterodactyl should handle sending emails.

@endsection @section('content') @yield('settings::nav')

Email Settings

@if($disabled)
This interface is limited to instances using SMTP as the mail driver. Please either use php artisan p:environment:mail command to update your email settings, or set MAIL_DRIVER=smtp in your environment file.
@else

Enter the SMTP server address that mail should be sent through.

Enter the SMTP server port that mail should be sent through.

@php $encryption = old('mail:mailers:smtp:encryption', config('mail.mailers.smtp.encryption')); @endphp

Select the type of encryption to use when sending mail.

The username to use when connecting to the SMTP server.

The password to use in conjunction with the SMTP username. Leave blank to continue using the existing password. To set the password to an empty value enter !e into the field.


Enter an email address that all outgoing emails will originate from.

The name that emails should appear to come from.

@endif
@endsection @section('footer-scripts') @parent @endsection