Add log mail driver support to frontend

The default mail driver in config/mail.php is 'log', which had no
matching Vue component, causing the mail configuration step in the
install wizard (and settings page) to render empty.
This commit is contained in:
Darko Gjorgjijoski
2026-04-05 12:33:14 +02:00
parent e1af9f56c4
commit ee76f31138
2 changed files with 2 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ export default {
Ses,
sendmail: Basic,
Mail: Basic,
log: Basic,
},
emits: ['next'],

View File

@@ -69,6 +69,7 @@ const mailDriver = computed(() => {
if (mailDriverStore.mail_driver == 'sendmail') return Basic
if (mailDriverStore.mail_driver == 'ses') return Ses
if (mailDriverStore.mail_driver == 'mail') return Basic
if (mailDriverStore.mail_driver == 'log') return Basic
return Smtp
})