68 lines
1.8 KiB
PHP
68 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Prevention\Mails;
|
|
|
|
use App\Invoice\InvoiceSettings;
|
|
use App\Lib\Editor\EditorData;
|
|
use App\Prevention\Contracts\Preventable;
|
|
use App\Prevention\Data\PreventionData;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Mail\Attachment;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Mail\Mailables\Content;
|
|
use Illuminate\Mail\Mailables\Envelope;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Collection;
|
|
|
|
class PreventionRememberMail extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public InvoiceSettings $settings;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
* @param Collection<int, PreventionData> $preventions
|
|
*/
|
|
public function __construct(public Preventable $preventable, public EditorData $bodyText, public Collection $preventions)
|
|
{
|
|
$this->settings = app(InvoiceSettings::class);
|
|
$this->bodyText = $this->bodyText
|
|
->replaceWithList('wanted', $preventions->map(fn($prevention) => $prevention->text())->toArray());
|
|
}
|
|
|
|
/**
|
|
* Get the message envelope.
|
|
*
|
|
* @return \Illuminate\Mail\Mailables\Envelope
|
|
*/
|
|
public function envelope()
|
|
{
|
|
return (new Envelope(
|
|
subject: $this->preventable->preventableSubject(),
|
|
))->to($this->preventable->getMailRecipient()->email, $this->preventable->getMailRecipient()->name);
|
|
}
|
|
|
|
/**
|
|
* Get the message content definition.
|
|
*
|
|
* @return \Illuminate\Mail\Mailables\Content
|
|
*/
|
|
public function content()
|
|
{
|
|
return new Content(
|
|
markdown: 'mail.prevention.prevention-remember-participant',
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the attachments for the message.
|
|
*
|
|
* @return array<int, Attachment>
|
|
*/
|
|
public function attachments(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|