adrema/app/Form/Mails/ConfirmRegistrationMail.php

66 lines
1.4 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\Models\Participant;
2024-03-15 00:28:57 +01:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
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-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-03-15 01:59:22 +01:00
* @return array<int, mixed>
2024-03-15 00:28:57 +01:00
*/
public function attachments()
{
return [];
}
}