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\Models\Participant;
|
2024-03-15 00:28:57 +01:00
|
|
|
use Illuminate\Bus\Queueable;
|
2024-04-14 10:49:44 +02:00
|
|
|
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;
|
2024-04-14 10:49:44 +02:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2024-03-15 00:28:57 +01:00
|
|
|
|
|
|
|
class ConfirmRegistrationMail extends Mailable
|
|
|
|
{
|
|
|
|
use Queueable, SerializesModels;
|
|
|
|
|
2024-03-15 01:52:27 +01:00
|
|
|
public string $fullname;
|
|
|
|
public FormConfigData $config;
|
|
|
|
|
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
|
|
|
{
|
2024-03-15 01:52:27 +01:00
|
|
|
$this->fullname = $participant->getFields()->getFullname();
|
|
|
|
$this->config = $participant->getConfig();
|
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.
|
|
|
|
*
|
2024-04-14 10:49:44 +02:00
|
|
|
* @return array<int, Attachment>
|
2024-03-15 00:28:57 +01:00
|
|
|
*/
|
|
|
|
public function attachments()
|
|
|
|
{
|
2024-04-14 10:49:44 +02:00
|
|
|
return $this->participant->form->getMedia('mailattachments')
|
|
|
|
->map(fn ($media) => Attachment::fromStorageDisk($media->disk, $media->getPathRelativeToRoot()))
|
|
|
|
->all();
|
2024-03-15 00:28:57 +01:00
|
|
|
}
|
|
|
|
}
|