@extends('root') @section('title', 'Email Gateway Configuration') @section('content')
@include('components.breadcrumb', [ 'title' => 'Email Gateway Configuration', 'links' => [ ['url' => route('admin.dashboard'), 'label' => 'Dashboard'], ], 'current' => 'Email Gateway' ])
Konfigurasi SMTP Email
@if(session('success')) @endif @if(session('error')) @endif
@csrf
@error('smtp_host')
{{ $message }}
@enderror
@error('smtp_port')
{{ $message }}
@enderror
@error('username')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
@error('from_name')
{{ $message }}
@enderror
@error('from_email')
{{ $message }}
@enderror
@error('security_type')
{{ $message }}
@enderror

Kirim Email Test
@if(!$config)
Simpan konfigurasi terlebih dahulu untuk mengirim email test.
@else
@endif
Informasi

Contoh Konfigurasi Gmail:

  • Host: smtp.gmail.com
  • Port: 587
  • Security: TLS
  • Username: email@gmail.com
  • Password: App Password

Untuk Gmail, gunakan App Password bukan password akun.

@if($config)
Status Konfigurasi
Terakhir diperbarui:
{{ $config->updated_at->format('d M Y H:i') }}
@if($config->creator)
Oleh: {{ $config->creator->name }} @endif
@endif
@endsection @push('scripts') @endpush