fix(email): transactional email sending

This commit is contained in:
peaklabs-dev
2025-01-21 14:53:44 +01:00
parent 4b74ca56c3
commit a230a42599

View File

@@ -53,6 +53,7 @@ class EmailChannel
if (! $type) { if (! $type) {
throw new Exception('No email settings found.'); throw new Exception('No email settings found.');
} }
config()->set('mail.default', $type);
return; return;
} }