title = $title; $this->messageBody = $messageBody; $this->actionText = $actionText; $this->actionUrl = $actionUrl; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: $this->title, ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.system_notification', ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }