$payload */ public function __construct(public array $payload) { } public function envelope(): Envelope { return new Envelope( subject: $this->payload['subject'] ?? 'Nouveau message', ); } public function content(): Content { return new Content( view: 'emails.webmail_message', with: [ 'body' => $this->payload['body'] ?? '', ], ); } }