id = uniqid(); $message['id'] = $this->id; $this->message = $message; $this->prioritized = $prioritized; $this->service = $service; } public function getMessage() { return $this->message; } public function getEmailService(): BaseEmail { return $this->service; } public function isPrioritized() { return (bool) $this->prioritized; } public function getId(): string { return $this->id ?? 'not yet'; } }