2024-10-16 15:44:45 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Mail;
|
|
|
|
|
|
|
|
use App\Models\LicenseSeat;
|
|
|
|
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 CheckinLicenseMail extends Mailable
|
|
|
|
{
|
|
|
|
use Queueable, SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new message instance.
|
|
|
|
*/
|
|
|
|
public function __construct(LicenseSeat $licenseSeat, $checkedOutTo, User $checkedInBy, $note)
|
|
|
|
{
|
|
|
|
$this->target = $checkedOutTo;
|
|
|
|
$this->item = $licenseSeat->license;
|
|
|
|
$this->admin = $checkedInBy;
|
|
|
|
$this->note = $note;
|
|
|
|
$this->settings = Setting::getSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the message envelope.
|
|
|
|
*/
|
|
|
|
public function envelope(): Envelope
|
|
|
|
{
|
2024-10-23 14:44:45 -07:00
|
|
|
$from = new Address(env('MAIL_FROM_ADDR'));
|
2024-10-16 15:44:45 -07:00
|
|
|
|
|
|
|
return new Envelope(
|
2024-10-23 14:44:45 -07:00
|
|
|
from: $from,
|
2024-10-16 15:44:45 -07:00
|
|
|
subject: trans('mail.License_Checkin_Notification'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the message content definition.
|
|
|
|
*/
|
|
|
|
public function content(): Content
|
|
|
|
{
|
|
|
|
return new Content(
|
|
|
|
markdown: 'mail.markdown.checkin-license',
|
|
|
|
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 [];
|
|
|
|
}
|
|
|
|
}
|