invitation->company_name . ' - B2In Platform', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( markdown: 'emails.partner-invitation', with: [ 'invitation' => $this->invitation, 'invitationUrl' => $this->invitationUrl, 'companyName' => $this->invitation->company_name, 'contactFullName' => $this->invitation->contact_full_name, 'partnerType' => $this->invitation->role?->display_name ?? $this->invitation->role?->name, 'expiresAt' => $this->invitation->expires_at, ] ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }