mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
Update emails
This commit is contained in:
+23
-1
@@ -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
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
use App\User;
|
||||
use App\Models\User;
|
||||
|
||||
return [
|
||||
|
||||
|
||||
Reference in New Issue
Block a user