芝麻web文件管理V1.00
编辑当前文件:/home/forge/stage.herta-bht.smartcon-survey.com/app/Mail/PasswordResetMail.php
data = $data; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'Reset Password Request', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'mails.passwordReset', with: [ 'email' => $this->data['email'], 'subject' => $this->data['subject'], 'messageContent' => $this->data['message'], ] ); } }