mirror of
https://github.com/snipe/snipe-it.git
synced 2026-02-05 08:45:36 +00:00
18 lines
386 B
PHP
18 lines
386 B
PHP
<?php
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Mail\Mailables\Headers;
|
|
|
|
class BaseMailable extends Mailable
|
|
{
|
|
public function headers(): Headers
|
|
{
|
|
return new Headers(
|
|
text: [
|
|
'X-Auto-Response-Suppress' => 'OOF, DR, RN, NRN, AutoReply',
|
|
'X-System-Sender' => 'Snipe-IT',
|
|
]
|
|
);
|
|
}
|
|
} |