diff --git a/snappymail/v/0.0.0/app/libraries/MailSo/Mail/Message.php b/snappymail/v/0.0.0/app/libraries/MailSo/Mail/Message.php index 021d4aba4..2efde4ad3 100644 --- a/snappymail/v/0.0.0/app/libraries/MailSo/Mail/Message.php +++ b/snappymail/v/0.0.0/app/libraries/MailSo/Mail/Message.php @@ -92,6 +92,21 @@ class Message implements \JsonSerializable return \property_exists($this, $k) ? $this->$k : null; } + public function Subject() : string + { + return $this->sSubject; + } + + public function From() : ?\MailSo\Mime\EmailCollection + { + return $this->oFrom; + } + + public function Uid() : int + { + return $this->Uid; + } + public function Plain() : string { return $this->sPlain;