Update emails

This commit is contained in:
DariusIII
2026-05-07 14:03:21 +02:00
parent fe08b777f1
commit ac1ac603cb
57 changed files with 1808 additions and 818 deletions
+23 -1
View File
@@ -1,7 +1,7 @@
<?php
return [
'default' => env('MAIL_MAILER', env('MAIL_DRIVER', 'smtp')),
'default' => env('MAIL_MAILER', 'smtp'),
'mailers' => [
'smtp' => [
@@ -48,4 +48,26 @@ return [
],
],
/*
|--------------------------------------------------------------------------
| Mail Branding
|--------------------------------------------------------------------------
|
| Shared branding values consumed by both Markdown mailables (themed via
| resources/views/vendor/mail/*) and Blade mailables (rendered through the
| <x-mail.layout> component). The `subject_prefix` is automatically applied
| by the `App\Mail\Concerns\HasBrandedSubject` trait so every email subject
| reads "[<App Name>] <subject>" unless an explicit override is supplied.
| Set `MAIL_BRAND_LOGO_URL` to a publicly-reachable absolute URL to swap
| the text branding for an inline logo.
|
*/
'brand' => [
'logo_url' => env('MAIL_BRAND_LOGO_URL'),
'subject_prefix' => env('MAIL_SUBJECT_PREFIX', '['.env('APP_NAME', 'NNTmux').'] '),
'queue' => env('MAIL_QUEUE', 'emails'),
'incident_queue' => env('MAIL_INCIDENT_QUEUE', 'incidents'),
],
];
+1 -1
View File
@@ -1,6 +1,6 @@
<?php
use App\User;
use App\Models\User;
return [