mailer('cp_'.MailPurpose::SUPPORT); } public function envelope(): Envelope { return $this->mailboxEnvelope(MailPurpose::SUPPORT, $this->subjectLine, 'operator-message'); } public function content(): Content { return new Content(view: 'mail.operator-message', with: [ 'name' => $this->customer->name, 'bodyText' => $this->bodyText, ]); } }