greeting('Hello ' . $notifiable->name . '!') ->line('You are receiving this email because an account has been created for you on ' . config('app.name') . '.') ->line('Username: ' . $notifiable->username) ->line('Email: ' . $notifiable->email); if (!is_null($this->token)) { return $message->action('Setup Your Account', Filament::getResetPasswordUrl($this->token, $notifiable)); } return $message; } }