organisation = $organisation; } protected function buildBranding(): static { $branding = app(MailBrandingService::class)->getBranding($this->organisation); $this->from( config('mail.from.address'), $branding['sender_name'] ); if ($branding['reply_to']) { $this->replyTo($branding['reply_to']); } return $this->with('branding', $branding); } }