organisation); $this->person = $person; $this->event = $event; } public function envelope(): Envelope { return new Envelope( subject: "Bevestiging aanmelding {$this->event->name}", ); } public function content(): Content { $this->buildBranding(); return new Content( view: 'mail.registration-confirmation', with: [ 'person' => $this->person, 'event' => $this->event, 'portalUrl' => config('crewli.portal_url'), ], ); } }