3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-05 10:15:27 +00:00
Files
snipe-it/app/Notifications/InventoryAlert.php
2025-12-03 13:20:01 -08:00

66 lines
1.5 KiB
PHP

<?php
namespace App\Notifications;
use AllowDynamicProperties;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Symfony\Component\Mime\Email;
#[AllowDynamicProperties]
class InventoryAlert extends Notification
{
use Queueable;
/**
* @var
*/
private $params;
/**
* Create a new notification instance.
*
* @param $params
*/
public function __construct($params, $threshold)
{
$this->items = $params;
$this->threshold = $threshold ?? 0;
}
/**
* Get the notification's delivery channels.
*
* @return array
*/
public function via()
{
return (!empty($this->items) && $this->threshold !== null) ? ['mail'] : [];
}
/**
* Get the mail representation of the notification.
*
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail()
{
$message = (new MailMessage)->markdown(
'notifications.markdown.report-low-inventory',
[
'items' => $this->items,
'threshold' => $this->threshold,
]
)
->subject('⚠️ '.trans('mail.Low_Inventory_Report'))
->withSymfonyMessage(function (Email $message) {
$message->getHeaders()->addTextHeader(
'X-System-Sender', 'Snipe-IT'
);
});
return $message;
}
}