This commit is contained in:
the-djmaze 2023-01-02 09:40:13 +01:00
parent e35d74be0b
commit 42c1c20a76

View file

@ -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;