username = (string) $user->username; $this->siteEmail = (string) config('mail.from.address'); $this->site = (string) config('app.name'); $this->preheader = "New user registered on {$this->site}."; } public function build(): static { return $this->from($this->siteEmail) ->brandedSubject('New account registered') ->markdown('emails.markdown.newAccountCreated', [ 'username' => $this->username, 'site' => $this->site, 'preheader' => $this->preheader, ]); } }