user = $user; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'Activation Account Mail', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'auth.activation-account-mail', with: [ 'name' => $this->user->name, 'activationCode' => $this->user->activation_code ] ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }