data = $data; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: '桃園市政府衛生局 114年慢性病防治管理暨多元行銷宣導', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'event-notify-mail', ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }