organisation); $this->person = $person; $this->event = $event; $this->reason = $reason; } public function envelope(): Envelope { return new Envelope( subject: "Update over je aanmelding — {$this->event->name}", ); } public function content(): Content { $this->buildBranding(); return new Content( view: 'mail.registration-rejected', with: [ 'person' => $this->person, 'event' => $this->event, 'reason' => $this->reason, ], ); } }