2024-03-15 00:28:57 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Form\Mails;
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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(
|
|
|
|
view: 'view.name',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the attachments for the message.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function attachments()
|
|
|
|
{
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|