adrema/app/Form/Mails/ConfirmRegistrationMail.php

80 lines
2.2 KiB
PHP
Raw Normal View History

2024-03-15 00:28:57 +01:00
<?php
namespace App\Form\Mails;
2024-03-15 01:52:27 +01:00
use App\Form\Data\FormConfigData;
use App\Form\Editor\FormConditionResolver;
2024-03-15 01:52:27 +01:00
use App\Form\Models\Participant;
2024-07-12 00:16:50 +02:00
use App\Lib\Editor\Condition;
2024-03-15 00:28:57 +01:00
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Attachment;
2024-03-15 00:28:57 +01:00
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;
class ConfirmRegistrationMail extends Mailable
{
use Queueable, SerializesModels;
2024-03-15 01:52:27 +01:00
public string $fullname;
public FormConfigData $config;
2024-07-14 22:16:34 +02:00
/** @var array<int, mixed> */
public array $topText;
2024-07-14 22:16:34 +02:00
/** @var array<int, mixed> */
public array $bottomText;
2024-03-15 01:52:27 +01:00
2024-03-15 00:28:57 +01:00
/**
* Create a new message instance.
*
* @return void
*/
2024-03-15 01:11:22 +01:00
public function __construct(public Participant $participant)
2024-03-15 00:28:57 +01:00
{
$conditionResolver = app(FormConditionResolver::class)->forParticipant($participant);
2024-03-15 01:52:27 +01:00
$this->fullname = $participant->getFields()->getFullname();
$this->config = $participant->getConfig();
2024-04-23 23:48:09 +02:00
$this->topText = $conditionResolver->makeBlocks($participant->form->mail_top);
$this->bottomText = $conditionResolver->makeBlocks($participant->form->mail_bottom);
2024-03-15 00:28:57 +01:00
}
/**
* Get the message envelope.
*
* @return \Illuminate\Mail\Mailables\Envelope
*/
public function envelope()
{
return new Envelope(
2024-03-15 01:11:22 +01:00
subject: 'Deine Anmeldung zu ' . $this->participant->form->name,
2024-03-15 00:28:57 +01:00
);
}
/**
* Get the message content definition.
*
* @return \Illuminate\Mail\Mailables\Content
*/
public function content()
{
return new Content(
2024-03-15 01:52:27 +01:00
markdown: 'mail.form.confirm-registration',
2024-03-15 00:28:57 +01:00
);
}
/**
* Get the attachments for the message.
*
* @return array<int, Attachment>
2024-03-15 00:28:57 +01:00
*/
public function attachments()
{
2024-04-23 23:48:09 +02:00
$conditionResolver = app(FormConditionResolver::class)->forParticipant($this->participant);
return $this->participant->form->getMedia('mailattachments')
2024-07-12 00:16:50 +02:00
->filter(fn ($media) => $conditionResolver->filterCondition(Condition::fromMedia($media)))
->map(fn ($media) => Attachment::fromStorageDisk($media->disk, $media->getPathRelativeToRoot()))
->all();
2024-03-15 00:28:57 +01:00
}
}