2024-10-16 15:29:50 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Mail;
|
|
|
|
|
|
|
|
use App\Models\Accessory;
|
|
|
|
use App\Models\Setting;
|
|
|
|
use App\Models\User;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Mail\Mailable;
|
|
|
|
use Illuminate\Mail\Mailables\Address;
|
|
|
|
use Illuminate\Mail\Mailables\Content;
|
|
|
|
use Illuminate\Mail\Mailables\Envelope;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
class CheckinAccessoryMail extends Mailable
|
|
|
|
{
|
|
|
|
use Queueable, SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new message instance.
|
|
|
|
*/
|
|
|
|
public function __construct(Accessory $accessory, $checkedOutTo, User $checkedInby, $note)
|
|
|
|
{
|
|
|
|
$this->item = $accessory;
|
|
|
|
$this->target = $checkedOutTo;
|
|
|
|
$this->admin = $checkedInby;
|
|
|
|
$this->note = $note;
|
|
|
|
$this->settings = Setting::getSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the message envelope.
|
|
|
|
*/
|
|
|
|
public function envelope(): Envelope
|
|
|
|
{
|
2024-10-23 15:43:42 -07:00
|
|
|
$from = new Address(env('MAIL_FROM_ADDR','service@snipe-it.io'));
|
2024-10-16 15:29:50 -07:00
|
|
|
|
|
|
|
return new Envelope(
|
2024-10-23 14:44:45 -07:00
|
|
|
from: $from,
|
2024-10-16 15:29:50 -07:00
|
|
|
subject: trans('mail.Accessory_Checkin_Notification'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the message content definition.
|
|
|
|
*/
|
|
|
|
public function content(): Content
|
|
|
|
{
|
|
|
|
return new Content(
|
|
|
|
markdown: 'mail.markdown.checkin-accessory',
|
|
|
|
with: [
|
|
|
|
'item' => $this->item,
|
|
|
|
'admin' => $this->admin,
|
|
|
|
'note' => $this->note,
|
|
|
|
'target' => $this->target,
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the attachments for the message.
|
|
|
|
*
|
|
|
|
* @return array<int, \Illuminate\Mail\Mailables\Attachment>
|
|
|
|
*/
|
|
|
|
public function attachments(): array
|
|
|
|
{
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|