password = $password; $this->username = $username; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( //from: new Address('example@example.com', 'Test Sender'), // Optional, overrides global MAIL_FROM_ADDRESS subject: 'Lupmis User Credentials', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.new-user', ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }