sendCount++; $this->lastRecipient = $recipient; $this->lastSubject = $subject; $this->lastBody = $body; } public function getSendCount(): int { return $this->sendCount; } public function getLastRecipient(): ?EmailAddress { return $this->lastRecipient; } public function getLastSubject(): ?string { return $this->lastSubject; } public function getLastBody(): ?string { return $this->lastBody; } }