3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-08-18 11:15:42 +00:00
Files
snipe-it/app/Notifications/WelcomeNotification.php
2026-08-06 15:36:58 +01:00

66 lines
1.9 KiB
PHP

<?php
namespace App\Notifications;
use App\Models\User;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Illuminate\Support\Facades\Password;
use Symfony\Component\Mime\Email;
#[AllowDynamicProperties]
class WelcomeNotification extends Notification
{
use Queueable;
public $expire_date;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct(public User $user)
{
// Password::broker() is typed to return the interface
// Illuminate\Contracts\Auth\PasswordBroker, which doesn't
// declare createToken(). The concrete Illuminate\Auth\Passwords\
// PasswordBroker does. Narrow the type locally so PHPStan can
// resolve the method against the concrete class.
/** @var \Illuminate\Auth\Passwords\PasswordBroker $broker */
$broker = Password::broker('invites');
$this->user->token = $broker->createToken($user);
$this->user->expire_date = now()->addMinutes((int) config('auth.passwords.invites.expire', 2880))->format('F j, Y, g:i a');
}
/**
* Get the notification's delivery channels.
*
* @return array
*/
public function via()
{
return ['mail'];
}
/**
* Get the mail representation of the notification.
*
* @return MailMessage
*/
public function toMail()
{
return (new MailMessage)
->subject('👋 '.trans('mail.welcome', ['name' => $this->user->first_name.' '.$this->user->last_name]))
->markdown('notifications.Welcome', $this->user->toArray())
->withSymfonyMessage(function (Email $message) {
$message->getHeaders()->addTextHeader(
'X-System-Sender', 'Snipe-IT'
);
});
}
}